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
整理面试遇到的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#
#ifndef __
cplusplus
的意思?
编译会出现没有定义的错误,问题应该是没有包含该宏定义的头文件,头文件为stdlib.h,奇怪的是包含该头文件后,编译还是出错,我所有的开发工具是VC6.0.我定位到该宏所在的头文件代码,代码如下:1:#ifndef__
cplusplus
2
wanwenweifly4
·
2011-06-22 20:00
c
语言
开发工具
编译器
c++中的 extern "C"
通常,在C 语言的头文件中经常可以看到类似下面这种形式的代码: #ifdef __
cplusplus
extern "C" { #endif /***
东边日出西边雨
·
2011-06-21 20:00
C++
c
C#
gcc
D语言
C+ __
cplusplus
剖析
__
cplusplus
剖析 时常在cpp的代码之中看到这样的代码: #ifdef __
cplusplus
&
weihe6666
·
2011-06-21 15:00
C++
c
C#
F#
gcc
VS2008生成静态库即调用静态库
生成lib方法: 步骤一,新建项目Win32 Project->Static library,建立一个头文件Lib.h #pragma once #ifdef __
cplusplus
weihe6666
·
2011-06-21 14:00
C++
tolower
From:http://www.
cplusplus
.com/reference/clibrary/cctype/tolower/#includeor#includetolowerinttolower(intc
zhanglibin_1222
·
2011-06-16 23:37
职场
休闲
tolower
tolower用法
tolower头文件
lwip1.4 arp #ifdef __
cplusplus
倒底是什么意思?
时常在cpp的代码之中看到这样的代码:#ifdef__cplusplusextern"C"{#endif//一段代码#ifdef__
cplusplus
}#endif这样的代码到底是什么意思呢?
xmphoenix
·
2011-06-14 15:00
GNU编译器:gcc中的预编译宏
*__NASE_FILE__源文件的完整路径名,和__FILE__不同,被引用的文件仍然是原来文件名 *__CHAR_UNSIGNED__用于指定该机器上char是无符号类型 *__
cplusplus
peterli_xue
·
2011-06-12 23:00
优化
function
gcc
File
include
编译器
makefile编写
main.c,son.c,son.h(1) son.h:#ifndefSON_H#defineSON_H#ifdef__cplusplusextern"C"{#endifvoidprint();#ifdef__
cplusplus
HEYUTAO007
·
2011-06-03 10:00
gcc与g++测试
只有源码是.c,且用gcc编译时,才会有__
cplusplus
宏定义。 链接时gcc链接的话,不能自动链接c++库,需要手工添加-lstdc++gcc-lstdc++test
a345017062
·
2011-05-31 19:00
c
测试
gcc
扩展
TC中的时钟中断程序
如果定义了_
cplusplus
则表示在C+
sunrier
·
2011-05-23 16:00
#ifdef __
cplusplus
是什么意思?
#ifdef__
cplusplus
是什么意思?
A Za, A Za, Fighting...
·
2011-05-22 17:00
#ifdef __
cplusplus
学习
时常在cpp的代码之中看到这样的代码:#ifdef__cplusplusextern"C"{#endif//一段代码#ifdef__
cplusplus
}#endif这样的代码到底是什么意思呢?
markman101
·
2011-05-19 18:00
extern C实现C与C++函数的相互调用
graphics/archive/2010/12/24/1916343.html 经常看到如下代码:#ifdef_cplusplusextern"C"{#endif#include"XXX.h"#ifdef_
cplusplus
summer_liuwei
·
2011-05-16 22:00
[置顶] VS2010下FPU和SSE优化测试结果
include#includeusingnamespacestd;#defineasm__asm#defineARRAY_SIZE3000000clock_tstart,finish;voidinit_
CPLUSPLUS
swimmingfish2004
·
2011-05-16 15:00
优化
测试
System
include
float
2010
extern "C"
时常在cpp的代码之中看到这样的代码: #ifdef __
cplusplus
extern "C" { #endif //一段代码 #ifdef __
cplusplus
isiqi
·
2011-05-07 09:00
C++
c
C#
gcc
F#
windows和linux下面通用的线程程序
是从mysq里面抓出来的,只抓了一部分,主要是线程间通信,是用windows模拟linux,方便多线程的开发 #ifndefTP_OS_H#defineTP_OS_H#ifdef__
cplusplus
#
spche
·
2011-04-29 17:00
探索C++的秘密之详解extern "C"
时常在cpp的代码之中看到这样的代码: #ifdef__
cplusplus
extern"C"{ #endif //一段代码 #ifdef__
cplusplus
} #endif这样的代码到底是什么意思呢
gao5528
·
2011-04-28 15:00
C++
c
汇编
gcc
reference
编译器
extern 的用法
引言在用C++的项目源码中,经常会不可避免的会看到下面的代码:1#ifdef__
cplusplus
2extern"C"{3#endif45/*...*/67#ifdef__
cplusplus
8}9#endif
bruce0532
·
2011-04-25 13:00
c
header
语言
fortran
编译器
Signal
__
cplusplus
do=showone&tid=298 #ifdef __
cplusplus
extern "C" { #endif 省略代码N行 #i
xserver
·
2011-04-21 15:00
C++
c
PHP
C#
Blog
extern "C"
#ifdef __
cplusplus
extern "C" { #endif //一段代码 #ifdef __
cplusplus
} #endif 这样的代码到底是什么意思呢
RTY 实践出真知
·
2011-04-19 23:00
C和C++混合编程
__
cplusplus
这个是必须的#ifdef __cplusplusextern “C” {#endif// Routines Here#ifdef __
cplusplus
}#endifc++中调用c
天下
·
2011-04-19 11:00
各种连接字符串
各种数据库的连接字符串都在这个网站,以后可以直接进来查了,呵呵~~ http://www.connectionstrings.com/ 还有一个同学给推进啊的学习C++的很好的网址 http://
cplusplus
.com
gukesdo
·
2011-04-17 21:00
c
数据库
java 和 C++ Socket通信(java作为服务端server,C++作为客户端client,解决中文乱码问题GBK和UTF8)
代码: http://files.cnblogs.com/kenkofox/Client-
CPlusPlus
.rarhttp://files.cnblogs.com/kenkofox/Server_Java.rar
mengdejun
·
2011-04-16 22:00
java
C++
c
socket
C#
VS2005里面 _countof 的实现
defined(__
cplusplus
)#define_countof(_Array)(sizeof(_Array)/sizeof(_Array[0]))#elseextern"C++"{templatechar
magictong
·
2011-04-14 02:00
c
微软
编译器
北大c++教程
http://net.pku.edu.cn/~course/cs101/2008/resource/www.
cplusplus
.com/index.html http://net.pku.edu.cn/
sflsgfs
·
2011-04-10 14:00
C++
2010
上一页
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
其他