`
deltamaster
  • 浏览: 7874 次
  • 性别: Icon_minigender_1
  • 来自: 上海
最近访客 更多访客>>
社区版块
存档分类
最新评论
文章列表
  位运算是底层开发中常用的C语言运算,移位运算是相当有用的一种运算。举例说明:   int main() { long a; long b = a << 16; long long c; long long d = c << 16; return 0; }   在这里写了两种位移运算,是比较典型的 ...
int main() { int a, b; int c = a && b; int d = a || b; return 0; }     这样的一段非常简单的程序,编译器一般会如何实现它呢?     首先,x86架构的CPU没有逻辑与和逻辑或的指令,那么,对于逻辑与和逻辑或,编译 ...
http://deltamaster.is-programmer.com/posts/28650.html
http://deltamaster.is-programmer.com/posts/28489.html
http://deltamaster.is-programmer.com/posts/28978.html
http://deltamaster.is-programmer.com/posts/28488.html
http://deltamaster.is-programmer.com/posts/28296.html
Global site tag (gtag.js) - Google Analytics