[--001.1] C++
mickeyfirst
excellent
展开
-
cpp命令
在c++编译环境中实际上是个exe。主要完成预处理工作 用途完成 C 语言源文件上的文件包含和宏置换。语法/usr/ccs/lib/cpp [ -C ] [ -P ] [ -qDBCS ] [ -IDirectory ] [ -UName ] [ -DName [ =Defin ition ] ] [ -qlanglvl=Language ] [ InFile ]原创 2007-07-02 10:40:00 · 5120 阅读 · 2 评论 -
do {} while (0)
http://c2.com/cgi/wiki?TrivialDoWhileLoop原创 2011-09-09 17:08:56 · 427 阅读 · 0 评论 -
A demo usging mmap() to read a file
#include #include #include #include #include #include int main (int argc, char *argv[]) { struct stat sb;转载 2011-09-08 16:35:25 · 610 阅读 · 0 评论 -
Key words of Doxygen
Special CommandsIntroductionAll commands in the documentation start with a backslash (/) or an at-sign (@). If you prefer you can replace all commands starting with a backslash below by their转载 2008-12-10 14:43:00 · 1151 阅读 · 0 评论 -
伟大的make.exe
这篇blog是我第一篇以一个应用程序作为标题。首先申明一下我不是标题党。在这里只是想表达一下尊敬和仰慕之情。实在是这个程序对c++以及其他高级软件的编译过程产生了革命性影响。从事软件开发的人,不再需要为了生成exe而一个一个地敲命令去。 make.exe 可以根据makefile里面定义的规则自动根据要求创建它。This project is part of the GNU Pr原创 2008-12-07 13:16:00 · 1445 阅读 · 0 评论 -
c++的~运算符
今天一个朋友问起~运算符,他好久不用,忘了怎么用。 ~运算将二进制的数值中0取1,1取0。我举了个例子,比如2,表示为0000 0010,执行完~运算符号后就变为1111 1101。刚说到这里他觉得不对,因为无论在vc还是在carbid中结果都是-3,刚才那个值负的太厉害了。 这个时候也不知道怎么说好了,就找了一篇有关原码、反码和补码的文章发给了他,后来就没有结果了,但愿弄原创 2009-01-07 20:41:00 · 1247 阅读 · 0 评论 -
原码、反码、补码
数值在计算机中表示形式为机器数,计算机只能识别0和1,使用的是二进制,而在日常生活中人们使用的是十进制,"正如亚里士多德早就指出的那样,今天十进制的广泛采用,只不过我们绝大多数人生来具有10个手指头这个解剖学事实的结果.数值有正负之分,计算机就用一个数的最高位存放符号(0为正,1为负).这就是机器数的原码了.假设机器能处理的位数为8.即字长为1byte,原码能表示数值的范围为(-127~-转载 2009-01-07 09:26:00 · 728 阅读 · 0 评论 -
SQLite
建了个新的blog转载 2008-11-12 16:32:00 · 661 阅读 · 0 评论 -
What means DDL, DML, TCL and DCL?
http://markyinsystem.blogspot.com/原创 2008-11-11 14:16:00 · 610 阅读 · 0 评论 -
What's different between INDEX and KEY in database
http://markyinsystem.blogspot.com/原创 2008-11-11 16:04:00 · 593 阅读 · 0 评论 -
B树
建了个新的blog原创 2008-11-06 21:52:00 · 539 阅读 · 0 评论 -
用于c++的perl解析器---Greta的缺点
建了个新的blog原创 2008-09-03 15:49:00 · 658 阅读 · 0 评论 -
字体的基本概念
建了个新的blog原创 2008-07-04 17:44:00 · 704 阅读 · 0 评论 -
Empty parameter lists
C distinguishes between a function declared with an empty parameter list and a function declared with a parameter list consisting of onlyvoi转载 2011-09-15 14:16:47 · 756 阅读 · 0 评论