what is difference between 0x0008 and 8?# Programming - 葵花宝典h*o2008-06-20 07:061 楼const ushort PERS_ID_GIF_OPT_LEVEL = 0x0008;what does it mean? why not represent it as 8?Thanks,
g*g2008-06-20 07:062 楼No difference, for binary mask, it means 00001000.People think this is clear.【在 h**o 的大作中提到】: const ushort PERS_ID_GIF_OPT_LEVEL = 0x0008;: what does it mean? why not represent it as 8?: Thanks,
l*82008-06-20 07:063 楼Yeah it is much cleaner to define a binary mask for bits 9 thru 13 as 0x3e00, instead of the decimal "15872".