
学习
coder_99
heyu158@126.com
展开
-
Photoshop cs4 任何像素都不大于50%选择,选区将不可见的原因及解决方法
你的选区的总的像素值小于你的羽化的值,羽化的效果是从清晰到透明,如果羽化的像素大于选区的像素范围,那么这是无效的.你要么建立大一些的选区,要么设置小的羽化值. 当选择小于50%的时候蚂蚁线就不显示 当你选择的区域都小于50%的话就会出现你说的情况羽化值设大了,或者说是原创 2011-08-09 00:53:55 · 38211 阅读 · 0 评论 -
赋值号的运算优先级低于四则运算的优先级
/******经典的问题:1.赋值号的运算优先级低于四则运算的优先级。2.赋值运算是从右向左运算的。3.a的值是动态变化的。5.任何数对一求余结果为零。 */#include void main(int argc,char * argv[]){ int a = 12 ; printf("a+=a > a=%d \n",a+=a); a = 1原创 2013-04-04 20:34:24 · 1815 阅读 · 0 评论 -
C++ 内存字节对齐
引言:1. C++内存在存储数据时有字节对齐的现象。测试:#include typedef struct student{ int score; char num;}data;typedef struct student_rev{ char num; int score; }data_rev;typedef struct students{ char原创 2014-01-09 16:13:12 · 879 阅读 · 0 评论