码迷,mamicode.com
首页 > 2015年07月22日 > 全部分享
【输出一个整数的二进制存储形式】
// 输出一个整数的二进制存储形式void putBinary(int n){ int bits = sizeof(n) * 8; while (bits-->0) { printf("%d", n>>bits&1); if (bits...
分类:其他好文   时间:2015-07-22 00:02:36    阅读次数:126
A Simple OpenGL Shader Example II
Abstract. The OpenGL Shading Language syntax comes from the C family of programming languages. Tokes, identifiers, semicolons, nesting with curly brac...
分类:其他好文   时间:2015-07-22 00:01:48    阅读次数:346
Java中常见的几种RuntimeException
一般面试中java Exception(runtimeException )是必会被问到的问题常见的异常列出四五种,是基本要求。更多的。。。。需要注意积累了常见的几种如下:NullPointerException - 空指针引用异常ClassCastException - 类型强制转换异常。Ille...
分类:编程语言   时间:2015-07-22 00:01:49    阅读次数:231
20150721-陈鹏-Roc
Generallyspeaking,weteamisgettingmoreunited.Andthemembersofourteamhelpwitheachotherandhaveagoodperformancethismorning.I'mreallyluckytohavethem,allmypa...
分类:其他好文   时间:2015-07-22 00:03:09    阅读次数:147
2027条   上一页 1 ... 117 118 119 120
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!