Mar 25, 2002 #1 dossier Technical User Oct 9, 2002 1 US what does this mean: while (Points != 0) { Points >>= 1; _logPoints++; } specifically, what does '>>=' mean?
what does this mean: while (Points != 0) { Points >>= 1; _logPoints++; } specifically, what does '>>=' mean?
Mar 25, 2002 #2 Zyrenthian Programmer Mar 30, 2001 1,440 US The >> operator is a bitshift right. All the binary ops are explained in the FAQ I recently wrote. Check this link http://www.tek-tips.com/faqs.cfm?spid=116&sfid=1578&CFID=52089367&CFTOKEN=70711618 Matt Upvote 0 Downvote
The >> operator is a bitshift right. All the binary ops are explained in the FAQ I recently wrote. Check this link http://www.tek-tips.com/faqs.cfm?spid=116&sfid=1578&CFID=52089367&CFTOKEN=70711618 Matt