c/c++
秋树春夏
这个作者很懒,什么都没留下…
展开
-
c++之const
看到const 关键字,C++程序员首先想到的可能是const 常量。这可不是良好的条件反射。如果只知道用const 定义常量,那么相当于把火药仅用于制作鞭炮。const 更大的魅力是它可以修饰函数的参数、返回值,甚至函数的定义体。 const 是constant 的缩写,“恒定不变”的意思。被const 修饰的东西都受到强制保护,可以预防意外的变动,能提高程序的健壮性。所以很多C++程序设转载 2014-03-10 17:01:33 · 571 阅读 · 0 评论 -
C语言中的时间函数localtime和gmtime
localtime和gmtime这两个函数采用了time.h中的一个tm结构体: struct tm { int tm_sec; /* Seconds. [0-60] (1 leap second) */ int tm_min; /* Minutes. [0-59] */ int tm_hour; /* Hours转载 2014-08-06 10:06:57 · 2208 阅读 · 0 评论