一般地,函数叫做指数函数,其中x是自变量,函数的定义域是R。 ...
分类:
其他好文 时间:
2017-03-12 00:50:54
阅读次数:
142
在C11的新特性中,新增加了宏定义 __func__ 用来描述直接得到当函数的名称。 如: const char* hello() {return __func__;} //返回hello. 也可作为初始化参数传递如: struct TestStruct { TestStruct (): name( ...
分类:
编程语言 时间:
2017-03-10 23:38:32
阅读次数:
205