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
assert
英文原文:http://www.
cplusplus
.com/reference/clibrary/cassert/assert/voidassert(intexpression);判定断言如果这个函数形式的宏的参数表达式等于
yang_hui1986527
·
2011-10-18 01:00
c
File
null
编译器
产品
#ifdef __
cplusplus
到底是什么意思?
时常在cpp的代码之中看到这样的代码:#ifdef__cplusplusextern"C"{#endif//一段代码#ifdef__
cplusplus
}#endif这样的代码到底是什么意思呢?
subkiller
·
2011-10-17 16:00
C++强制类型转换:dynamic_cast、const_cast 、static_cast、reinterpret_cast
http://www.
cplusplus
.com/doc/tut
Denny_233
·
2011-10-15 14:00
编程
C++
c
null
Class
编译器
NULL, '\0',0 '0'的区别
defined(NULL)&&defined(__NEEDS_NULL)#ifdef__
cplusplus
#defineNULL0#else#defineNULL((void*)0)#end
mylinx
·
2011-10-14 14:42
c++
c
如何判断一段程序是由C 编译程序还是由C++编译程序编译的
#ifdef _
cplusplus
/*判断是否用C++编译器?
ijavagos
·
2011-10-07 20:00
C++
UltraEdit编辑器if 花括号自动缩进两空格的解决方案
在安装目录下找到wordfiles文件夹,里面找到相应的配置文件,如果是C++的话,就是c_
cplusplus
.uew,打开找到/IndentStrings="{""if""else"":",这句话的意思是在什么后自动缩进
Unimen
·
2011-10-06 09:00
STL容器
初学者学用法可以参见:http://www.
cplusplus
.com/reference/stl/要了解各个容器的特点才能选择适合的容器哦。
codingkid
·
2011-09-30 12:00
STL Resource
1.API函数查询http://www.
cplusplus
.com/reference/stl/vector/2.经典的源代码了接口: http://www.aoc.nrao.edu/php/tjuerges
mo451583183
·
2011-09-28 10:44
职场
STL
休闲
关于文件操作的头文件,类
C++ 可以看这个 http://www.
cplusplus
.com/doc/tutorial/files/ 我整理下: ofstream //写文件的流类
rollstone
·
2011-09-27 14:00
C++
探索C++的秘密之详解extern "C"
探索C++的秘密之详解extern"C"时常在cpp的代码之中看到这样的代码:#ifdef__cplusplusextern"C"{#endif//一段代码#ifdef__
cplusplus
}#endif
laokaddk
·
2011-09-22 15:30
C++
职场
学习笔记
休闲
extern"c"
VS2008生成静态库即调用静态库
下面是一个简单的函数封装为库(静态库)的实例:生成lib方法: 步骤一,新建项目Win32Project->Staticlibrary,建立一个头文件Lib.h #pragmaonce #ifdef__
cplusplus
qingkong8832
·
2011-09-16 16:00
c
工作
测试
include
library
aix6安装apche2及配置负载+tomcat群集
阅读更多1.安装编译环境gccgcc-4.2.0-3.aix6.1.ppc.rpmgcc-
cplusplus
-4.2.0-3.aix6.1.ppc.rpmlibgcc-4.2.0-3.aix6.1.ppc.rpmlibstdcplusplus
xuershan
·
2011-09-15 21:00
aix
apche
负载
tomcat
群集
aix6安装apche2及配置负载+tomcat群集
阅读更多1.安装编译环境gccgcc-4.2.0-3.aix6.1.ppc.rpmgcc-
cplusplus
-4.2.0-3.aix6.1.ppc.rpmlibgcc-4.2.0-3.aix6.1.ppc.rpmlibstdcplusplus
xuershan
·
2011-09-15 21:00
aix
apche
负载
tomcat
群集
C++项目中的extern "C" {}
http://www.cnblogs.com/skynet/archive/2010/07/10/1774964.html引言在用C++的项目源码中,经常会不可避免的会看到下面的代码:1#ifdef__
cplusplus
2extern"C
bbplayers
·
2011-09-10 16:00
C++
c
header
语言
编译器
Signal
C++写C
ifndef __ABGroup__ #define __ABGroup__ #include <AddressBook/ABAddressBook.h> #if defined(__
cplusplus
xserver
·
2011-09-06 17:00
C++
C++程序中出现 fatal error C1189: #error : eh.h is only for C++!
#ifndef__
cplusplus
#error"eh.hisonlyforC++!"
IEEEITU
·
2011-09-04 11:00
[置顶] 资源连接
1.标准C++网站www.
cplusplus
.com2.C++之父关于C++的FAQ http://www.gisforum.net/bbs/dispbbs.asp?
helonSY
·
2011-09-02 10:00
#ifdef __
cplusplus
一般的考虑跨平台使用方法如下:#ifdefined(__
cplusplus
)||defined(c_plusplus)//跨平台定义方法 extern"C"{ #endif //...正常的声明段
najiutan
·
2011-09-02 09:00
c
windows
编译器
跨平台
gcc 编译过程
:源文件-->预处理-->编译/优化-->汇编-->链接-->可执行文件对于gcc而言:第一步预处理命令:gcc-otest.i-Etest.c或者cpp-otest.itest.c(这里cpp不是值
cplusplus
ljyxxzj
·
2011-08-31 11:08
职场
gcc
休闲
gcc 编译过程
/优化-->汇编-->链接-->可执行文件对于gcc而言:第一步预处理 命令:gcc-otest.i-Etest.c 或者cpp-otest.itest.c(这里cpp不是值
cplusplus
ljyxxzj
·
2011-08-31 11:08
gcc
职场
休闲
编译过程
如何理解stdlib.h里的_countof()宏
defined(__
cplusplus
) #define_countof(_Array)(sizeof(_Array)/sizeof(_Array[0])) #else extern"C++"
evi10r
·
2011-08-30 22:00
vector
reference
编译器
templates
fun
Pointers
java调用c++封装的dll
ifndef_Included_com_service_InvocationService #define_Included_com_service_InvocationService #ifdef__
cplusplus
liyu1128
·
2011-08-29 21:00
java
C++
service
header
Class
dll
C/C++实现的冒泡排序.插入排序.快速排序
fileGM_BSort.h *@brief冒泡排序 *@author *@date *@version */ #ifndef_GM_BSORT_H #define_GM_BSORT_H #ifdef__
cplusplus
开心303
·
2011-08-28 17:00
C实现消息队列Queue
Dequeue在队首进行操作 *@author *@date *@version */ #ifndef_GM_QUEUE_H #define_GM_QUEUE_H #include #ifdef__
cplusplus
开心303
·
2011-08-28 17:00
C实现Stack,并通过Stack来检查括号是否匹配
fileGM_Stack.h *@brief *@author *@date *@version */ #ifndef_GM_STACK_H #define_GM_STACK_H #include #ifdef__
cplusplus
开心303
·
2011-08-28 17:00
整理面试遇到的C语言实现的单向链表
提供了常用的单向链表操作接口 *@author *@date *@version */ #ifndef_GM_SLINK_H #define_GM_SLINK_H #include #ifdef__
cplusplus
开心303
·
2011-08-28 17:00
log函数封装,让WIN32和android ndk共用相同的log函数,方便调试
_log.h#ifdef__
cplusplus
extern"C"{ #endif typedefint(*funcPtr)(constchar*format,...); typedefstruct_Log
victoryckl
·
2011-08-27 15:00
android
struct
Module
buffer
include
library
C++网址
http://blog.csdn.net/xxingup xing博客http://www.wacpp.com/ C++编程学习网http://www.
cplusplus
.com/ c++在线标准库
zhuimengzh
·
2011-08-17 09:00
数据结构
编程
C++
语言
网易
structure
探索C++的秘密之详解extern "C"
时常在cpp的代码之中看到这样的代码:#ifdef__cplusplusextern"C"{#endif//一段代码#ifdef__
cplusplus
}#endif这样的代码到底是什么意思呢?
Challenge_C_PlusPlus
·
2011-08-16 18:00
extern "C" 的解释和使用方法
#ifdef__
cplusplus
extern"C"{ #endif //一段代码 #ifdef__
cplusplus
} #endif 这样的代码到底是什么意思呢?
kiddy19850221
·
2011-08-12 21:00
#ifdef __
cplusplus
的用法
我们知道C和C++在编译时对函数有一个mangling过程~所以C和C++程序不能直接相互调用,必须使用extern"C"进行修饰~ 一般来说,我们会这样写头文件中: #ifdef__
cplusplus
wangsifu2009
·
2011-08-11 20:00
C++ web programing
来自:http://www.tutorialspoint.com/
cplusplus
/cpp_web_programming.htm不错的网站:http://www.cnblogs.com/tingshuo
mo451583183
·
2011-08-09 16:36
C++
Web
职场
休闲
浅析_countof宏
#ifndef_
cplusplus
#define_countof(_Array)(sizeof(_Array)/sizeof(_Array[0])) #else extern"C++" { template
hanzz2007
·
2011-08-07 17:00
c
工作
平台
C++中extern “C”含义深层探索
C++中extern“C”含义深层探索时常在cpp的代码之中看到这样的代码:#ifdef__cplusplusextern"C"{#endif//一段代码#ifdef__
cplusplus
}#endif
webols
·
2011-08-07 00:00
学习好网站
http://www.
cplusplus
.comhttp://stackoverflow.com/http://www.kuqin.com/docs/http://blog.fpmurphy.com/
txgc1009
·
2011-08-05 09:00
C++中extern “C”含义深层探索
在看PHP源代码的过程中,发现了多处用到BEGIN_EXTERN_C()和END_EXTERN_C(),后来发现是在Zend/zend.h中定义的: 29#ifdef__
cplusplus
30#defineBEGIN_EXTERN_C
topasstem8
·
2011-08-04 16:00
C++
c
Module
语言
float
编译器
C++项目中的extern "C" {}
引言在用C++的项目源码中,经常会不可避免的会看到下面的代码:#ifdef__
cplusplus
extern"C"{ #endif /*...*/ #ifdef__
cplusplus
icyrat
·
2011-07-28 13:00
C++
c
header
语言
编译器
Signal
FFMpeg编码MPEG-1,2视频
include#include#include#pragmaonce #ifdef__cplusplusextern"C"{#endif#include#include#include#ifdef__
cplusplus
husthlj
·
2011-07-28 12:00
Stream
video
null
input
float
Codec
ffmpeg解码视频存为BMP文件
#include #include #include #include #pragmaonce #ifdef__
cplusplus
extern"C"{ #endif #include #include
husthlj
·
2011-07-28 12:00
Stream
struct
File
null
input
FP
在window下使用ffmpeg进行解码
vs2008头文件: #include#include#include #ifdef__cplusplusextern"C"{#endif#include#include#include#ifdef__
cplusplus
husthlj
·
2011-07-28 12:00
Microsoft
video
null
buffer
include
Codec
自制string类(支持宽字符)
stringclassreferencs:http://www.
cplusplus
.com/reference/string/string/欢迎学习交流!
zhanxinhang
·
2011-07-22 14:00
#ifdef __
cplusplus
看一些程序的时候老是有“#ifdef __
cplusplus
”的定义,搞搞清楚是怎么回事: #ifdef __
cplusplus
是什么意思?
liufei_learning
·
2011-07-16 09:00
c
汇编
gcc
reference
编译器
macros
#ifdef __
cplusplus
看一些程序的时候老是有“#ifdef__
cplusplus
”的定义,搞搞清楚是怎么回事: #ifdef__
cplusplus
是什么意思?
javababy1
·
2011-07-16 09:00
if
我的chrome
setmkt=zh-CN&q=%sc++c http://www.
cplusplus
.com/search.do?q=%s优
longxj04
·
2011-07-15 10:00
浏览器
chrome
百度
Google
search
Go
GCC 编译全过程
优化-->汇编-->链接-->可执行文件对于gcc而言:第一步预处理 命令:gcc-otest.i-Etest.c 或者cpp-otest.itest.c(这里cpp不是值
cplusplus
js_xj
·
2011-07-15 08:00
汇编
object
gcc
File
编译器
preprocessor
extern "c"
#ifdef__
cplusplus
extern"C"{ #endif {............................}
suo-tree
·
2011-07-10 17:00
线程安全的C++的Singleton实现
//文章参见:http://www.2maomao.com/blog/when-
cplusplus
-meet-singleton///------------------Implementation#1
willnow
·
2011-07-05 15:00
C++老矣,尚能饭否?
中国人读“C++”时存在两种读音,一种读作“C加加”,另一种读作“
Cplusplus
”。两种读音似乎都没错,只是遵从不同的标准罢了。
开心303
·
2011-07-05 14:00
关于模版的一个问题
http://www.
cplusplus
.com/doc/tutorial/templates/ Templatesandmultiple-fileprojectsFromthepointofviewofthecompiler
nellson
·
2011-07-01 14:00
C++预定义变量(写程序版本信息) &&一些常用转义字符的ASCII码值
__
cplusplus
变量只有在C++程序中才被定义;一些老编译器也可以为c_plusplus。 __STDC__ 变量在编译C
灵动的水
·
2011-06-24 15:00
C++
c
C#
F#
上一页
33
34
35
36
37
38
39
40
下一页
按字母分类:
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
其他