E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
_cplusplus
#ifdef __
cplusplus
倒底是什么意思?
时常在cpp的代码之中看到这样的代码:#ifdef__cplusplusextern"C"{#endif//一段代码#ifdef__
cplusplus
}#endif这样的代码到底是什么意思呢?
·
2012-04-13 14:00
c
汇编
gcc
reference
编译器
几大语言, 随性点评
C--太上皇
Cplusplus
--学究Java--罗嗦Scala--白痴天才Groovy--投错胎了Python--中庸Ruby--自负Perl--怪叔叔Php--邋遢鼠JavaScript--小淘气Lugua
大东哥
·
2012-04-13 12:00
C和C++混合编译
关于extern_C通常,在C语言的头文件中经常可以看到类似下面这种形式的代码: #ifdef__
cplusplus
extern"C"{ #endif /****somedeclarationorso
David_xtd
·
2012-04-11 09:00
c
function
gcc
table
编译器
关于NULL在C和C++中的区别
defined(NULL)&&defined(__NEEDS_NULL) #ifdef__
cplusplus
#define
koudaidai
·
2012-04-06 16:00
time_t
返回时间,从1970.1.1.00:00开始计算http://www.
cplusplus
.com/reference/clibrary/ctime/time_t/
hushengshan
·
2012-03-30 18:00
NDK帮助文档学习--
CPLUSPLUS
-SUPPORT.html
android-ndk-r7b\docs\
CPLUSPLUS
-SUPPORT.htmlAndroid平台提供了一个minimalC++runtimesupportlibrary (/system/lib
bjutstar
·
2012-03-30 14:00
c
exception
System
文档
library
features
详解extern "C"
时常在cpp的代码之中看到这样的代码: #ifdef__
cplusplus
extern"C"{ #endif //一段代码 #ifdef__
cplusplus
} #endif这样的代码到底是什么意思呢
yockie
·
2012-03-29 20:00
c
汇编
gcc
reference
编译器
POJ 1051 P,MTHBGWB
stringstr="";//初始化为空字符串;4.推荐一个c++的网站(
cplusplus
.com-TheC++ResourcesNetwork)。
dollarzhaole
·
2012-03-26 22:00
数据结构
c
String
NetWork
resources
c 语言头文件的那些事
#ifndef__APT_PTHREAD_H__ #define__APT_PTHREAD_H__ #ifdef__
cplusplus
extern"C"{ #endif #include #include
yangzhongxuan
·
2012-03-22 23:00
c
File
语言
编译器
C++的tie()函数
cplusplus
.com给出的定义是:ostream*tie()const;//返回指向绑定的输出流的指针。ostream*tie(ostr
asx20042005
·
2012-03-18 00:02
c++
stream
windows
string
linux
ios
c++
C/C++小问题大杂烩
http://
cplusplus
.comhttp://en.cppreference.com/http://www.cprogramming.com/1.求一个整数二进制表示时1的个数,很巧妙#include
xiarendeniao
·
2012-03-17 21:00
#ifdef __
cplusplus
有什么作用
一般的考虑跨平台使用方法如下: #ifdefined(__
cplusplus
)||defined(c_plusplus)//跨平台定义方法 extern"C"{ #endif //...正常的声
thanklife
·
2012-03-16 22:00
c
汇编
Module
gcc
语言
编译器
VC++ string .........
推荐网站: http://www.
cplusplus
.com/reference/string/string/之所以抛弃char*的字符串而选用C++标准程序库中的string类,是因为他和前者比较起来
shanshanpt
·
2012-03-16 16:00
C++类中static成员函数的声明与实现
基本的语法,相关的资料可以参考:http://
cplusplus
.syntaxerrors.info/index.php?
rgxgf
·
2012-03-13 19:00
#ifdef extern c endif
:-)时常在cpp的代码之中看到这样的代码:#ifdef__cplusplusextern"C"{#endif//一段代码#ifdef__
cplusplus
}#endif 这样的代码到底是什么意思呢
freedom2028
·
2012-03-04 17:00
探秘C++之详解extern "C"
在cpp的代码之中有这样的一段代码: #ifdef __
cplusplus
extern "C" { #endif //一段代码 #ifdef __
cplusplus
mars914
·
2012-02-27 13:00
C++
c
编译原理
extern
c++操作符重载
c++操作符重载(翻译)翻译自:http://www.
cplusplus
.com/doc/tutorial%20%20/classes2/对于c++中基本的类型,我们可以采用如下方式进行操作:inta,
richerg85
·
2012-02-22 14:00
C++
function
delete
Parameters
Constructor
overloading
如何判断一段程序是由C编译,还是由C++编译?
大多数编译器在编译时如果是c++的程序都会定义一个叫_
cplusplus
的宏。
lifu119
·
2012-02-20 16:00
C++
c
编译器
ffmpeg error C3861: 'UINT64_C': identifier not foun
#ifndefINT64_C #defineINT64_C(c)(c##LL) #defineUINT64_C(c)(c##ULL) #endif第二种方法#ifdef__
cplusplus
#define
maikforever
·
2012-02-16 10:00
C++项目中的extern "C" {}(转自:http://www.cnblogs.com/skynet/archive/2010/07/10/1774964.html)
引言在用C++的项目源码中,经常会不可避免的会看到下面的代码:#ifdef__
cplusplus
extern"C"{ #endif /*...*/ #ifdef__
cplusplus
} #endif
lslxdx
·
2012-02-13 09:00
探索C++的秘密之详解extern "C"
时常在cpp的代码之中看到这样的代码:#ifdef__cplusplusextern"C"{#endif//一段代码#ifdef__
cplusplus
}#endif这样的代码到底是什么意思呢?
winson_jason
·
2012-02-07 10:00
gcc预定义的一些宏
预定义的宏 *__NASE_FILE__源文件的完整路径名,和__FILE__不同,被引用的文件仍然是原来文件名 *__CHAR_UNSIGNED__用于指定该机器上char是无符号类型 *__
cplusplus
aican_yu
·
2012-02-07 10:00
AMF3协议的C++封装
libamfx只支持AMF0不支持AMF3amf3
cplusplus
是国人实现的,仅实现windows平台版本,支持除undefine/xmldoc/xml外其他AMF3数据类型。
wooce
·
2012-02-07 10:00
AMF3协议的C++封装
libamfx 只支持AMF0不支持AMF3 amf3
cplusplus
是国人实现的,仅实现windows平台版本,支持除undefine/xmldoc/xml外其他AMF3数据类型
wooce
·
2012-02-07 10:00
C++
模拟glib中双链表的部分实现
//GList.h #ifndefGLIST_H_INCLUDED #defineGLIST_H_INCLUDED #ifdef_
cplusplus
extern"C"{ #endif typedefstruct_GListGList
tujiaw
·
2012-02-02 18:00
c
struct
list
user
null
insert
如何判断一段程序是由C编译程序还是由C++编译程序编译的
#includeusingnamespacestd;#ifdef_
cplusplus
char*CODE="c++";#else char*CODE="c";#endifvoidmain(){char*
nocml
·
2012-02-02 10:00
头文件宏定义
/*GuardCcodeinheaders,whileincludingthemfromC++*/#ifdef __
cplusplus
#defineG_BEGIN_DECLS extern"C"{#defineG_END_DECLS
tujiaw
·
2012-01-31 08:00
c
object
File
null
关于 extern “C”
C++为了与C语言兼容,在符号管理上,C++有一个用来声明或者定义一个C的符号的extern"C"关键字用法:#ifdef__
cplusplus
extern"C"{ #endif
fyyy4030
·
2012-01-29 00:00
c
Module
嵌入式
语言
编译器
const_cast和static_cast
const_cast和static_cast分类:
Cplusplus
2008-06-2618:09 478人阅读 评论(0) 收藏 举报 const_cast和static_castStatic_cast
jfkidear
·
2012-01-21 16:00
FFMpeg编码MPEG-1,2视频
include#include#include#pragmaonce #ifdef__cplusplusextern"C"{#endif#include#include#include#ifdef__
cplusplus
zxc110110
·
2012-01-10 14:00
Stream
video
null
input
float
Codec
C++项目中的extern C
.*/ #ifdef__
cplusplus
}#endif它到底有什么用呢,你知道吗?而且这样的问题经常会出现在面试or笔试中。下面
wyb19890515
·
2012-01-09 16:00
C++
c
header
语言
编译器
Signal
C++项目中的extern "C" {}
.*/ #ifdef__
cplusplus
}#endif它到底有什么用呢,你知道吗?而且这样的问题经常会出现在面试or笔试中。
shaoyizhe2006
·
2012-01-07 11:00
C++
c
header
语言
Signal
NSObjCRuntime.h
#include #ifdefined(__
cplusplus
) #defineFOUNDATION_EXTERNextern"C" #else #defineFOUNDATION_EXTERNextern
leonpengweicn
·
2011-12-30 18:00
Erlang风格的并行(Erlang Style Concurrency)
Erlang风格的并行(ErlangStyleConcurrency)转载自:http://
cplusplus
.wikidot.com/cn:erlang-style-concurrency我们常常能在
牵着老婆满街逛
·
2011-12-29 18:00
Linux操作系统下动态库的编写与调用
include"stdio.h"#include"stdlib.h"#include"stdarg.h" #ifdef__cplusplusextern"C"{#endifintadd(intx,inty); #ifdef__
cplusplus
jjunjoe
·
2011-12-29 16:00
linux
gcc
null
语言
library
testing
extern "C"
时常在cpp的代码之中看到这样的代码: #ifdef__
cplusplus
extern"C"{ #endif //一段代码 #ifdef__
cplusplus
} #endif这样的代码到底是什么意思呢
lzhlzz
·
2011-12-26 18:00
c
汇编
gcc
reference
编译器
C++的秘密之详解extern "C"
.*/ #ifdef__
cplusplus
}#endif它到底有什么用呢,你知道吗?而且这样的问题经常会出现在面试or笔试中。
cffishappy
·
2011-12-22 11:00
探索C++的秘密之详解extern "C"
时常在cpp的代码之中看到这样的代码:#ifdef__cplusplusextern"C"{#endif//一段代码#ifdef__
cplusplus
}#endif这样的代码到底是什么意思呢?
zhengmeifu
·
2011-12-14 16:00
C++
c
汇编
gcc
reference
编译器
extern c详解(上)
文章修改自:http://wenku.baidu.com/view/8872c444b307e87101f69650.html引言在用C++的项目源码中,经常会不可避免的会看到下面的代码:#ifdef__
cplusplus
hudashi
·
2011-12-10 09:00
串口操作---C代码
com.h#ifndef__COM_H__ #define__COM_H__ #ifdef__
cplusplus
extern"C"{ #endif //打开串口 intOpenComPort(intport
flydream0
·
2011-12-10 08:00
串口操作---C代码
com.h #ifndef __COM_H__ #define __COM_H__ #ifdef __
cplusplus
extern "C" { #endif //打开串口
jiagou
·
2011-12-10 08:00
代码
printf函数解析
摘自:http://www.
cplusplus
.com/reference/clibrary/cstdio/printf/functionintprintf(constchar*format,...)
liming0931
·
2011-12-06 20:00
String
function
Integer
Parameters
character
output
在python 中调用Dll
//#include"stdafx.h"#includeusingnamespacestd;#ifdef_MANAGED#pragmamanaged(push,off)#endif#ifdef__
cplusplus
haha_mingg
·
2011-12-05 17:39
Pythonx.x
学习与开发
python
dll
import
c
C编译程序编译 OR C++编译程序编译
A:C++编译时定义了_
cplusplus
,C编译时定义了_STDC_;
梦中乐园
·
2011-11-28 23:00
利用ccstudio提供的工具解析出coff文件
、main.obj文件的源代码: //#if0 //#ifdef__
cplusplus
//#if__cplusplu
RunBoying
·
2011-11-26 14:00
GNU编译器:gcc中的预编译宏
*__NASE_FILE__源文件的完整路径名,和__FILE__不同,被引用的文件仍然是原来文件名 *__CHAR_UNSIGNED__用于指定该机器上char是无符号类型 *__
cplusplus
ti_tantbx
·
2011-11-25 16:00
优化
function
gcc
File
include
编译器
【C++】cstdlib中exit/abort/atexit
http://www.
cplusplus
.com/reference/clibrary/cstdlib/abort/http://www.
cplusplus
.com/reference/clibrary
PfanAya
·
2011-11-24 19:00
C++
function
存储
returning
errno
原文:http://www.
cplusplus
.com/reference/clibrary/cerrno/errno/int最后的错误代码这个宏定义了一个可以修改的int整数型左值,因为它既可以被程序读取
yang_hui1986527
·
2011-11-23 00:00
c
编译器
cerrno
原文:http://www.
cplusplus
.com/reference/clibrary/cerrno/C错误C语言头文件定义了以下宏:errno 最后的错误代码(宏)加上两个新增的宏常量:EDOMandERANGE
yang_hui1986527
·
2011-11-23 00:00
比较好的大整数四则运算
#include usingnamespacestd; #defineINT_BIT_MAX255 #defineFLOAT_BIT_MAX255 #ifndefCONST #ifdef__
cplusplus
zhongkeli
·
2011-11-19 14:00
上一页
31
32
33
34
35
36
37
38
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他