在Python3.5下使用pip安装numpy会出现错误 ????d:\program?files\python?3.5\lib\distutils\dist.py:261:?UserWarning:?Unknown
distribution?option:?‘define_macros‘
??????warnings.warn(msg...
分类:
编程语言 时间:
2015-10-13 19:35:48
阅读次数:
858
VC 中的宏使用方法参考 MSDN:?Macros (C/C++) C/C++ 预定义宏^ __LINE__: 当前源文件的行号,整数 __FILE__: 当前源文件名,char 字符串,使用 /FC 选项产生全路径 __DATE__: 当前编译日期,char 字符串,格式 ...
分类:
编程语言 时间:
2015-09-22 14:57:56
阅读次数:
259
看一些程序的时候老是有“#ifdef __cplusplusextern "C" {#endif”的定义,搞搞清楚是怎么回事:Microsoft-Specific Predefined Macros__cplusplus Defined for C++ programs only. 意思是说,如果是...
分类:
其他好文 时间:
2015-09-13 17:11:25
阅读次数:
165
if using C++ on Linux, be sure to?#define __STDC_FORMAT_MACROS?before including?inttypes.h. For?int64_t?type: int64_t?t;printf("%"?PRId64?"\n",?t); for?uint64_t?type: uint64_t?t;printf(...
分类:
其他好文 时间:
2015-09-01 12:42:22
阅读次数:
182
一、ANSI C标准预定义宏 ? __LINE__:在源代码中插入当前源代码行号; __FILE__:在源文件中插入当前源文件名; __DATE__:在源文件中插入当前的编译日期 __TIME__:在源文件中插入当前编译时间; __STDC__:当要...
分类:
编程语言 时间:
2015-08-25 12:56:53
阅读次数:
266
在 GNU C 中,宏可以接受可变数目的参数,就象函数一样,例如:
#define pr_debug(fmt,arg...) printk(KERN_DEBUG fmt,##arg)
用可变参数宏(variadic macros)传递可变参数表
你可能很熟悉在函数中使用可变参数表,如:
void printf(const char* format, …);
直到...
分类:
其他好文 时间:
2015-08-11 21:35:54
阅读次数:
198
linux crypt函数1. crypt定义
#define _XOPEN_SOURCE /* See feature_test_macros(7) */
#include
char *crypt(const char *key, const char *salt);
上面是man 3 crypt看到的crypt函数定义。
从定义中看到要想...
分类:
系统相关 时间:
2015-06-29 10:18:17
阅读次数:
408
参考:http://selinuxproject.org/page/NB_RefPolicyDirectory Macrosmacroexpansiongetattr_dir_permsgetattrsetattr_dir_perms setattr ...
分类:
系统相关 时间:
2015-06-23 19:37:11
阅读次数:
327
1 // The following ifdef block is the standard way of creating macros which make exporting 2 // from a DLL simpler. All files within this DLL are co.....
分类:
编程语言 时间:
2015-06-20 23:30:22
阅读次数:
306
you are a C programmer, you must be familiar with macros. They are powerful and can help you ease your work if used correctly. However, if you don‘t define macros carefully, they may bite you and...
分类:
系统相关 时间:
2015-06-14 17:02:13
阅读次数:
165