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
object-c
#if defined(__
cplusplus
) http://blog.sina.com.cn/s/blog_69fc9ee001010b90.html object-c 学习第三天
·
2015-10-21 12:33
object
第一部分 基本语言 第三章 标准库类型(3.3标准库vector类型)
这里贴一段来自http://www.
cplusplus
.com/reference/vector/vector/的介绍。讲得更加清楚。
·
2015-10-21 12:23
vector
C++类型转换(翻译自
cplusplus
)
前言 原文翻译自http://www.
cplusplus
.com/doc/tutorial/typecasting/,觉得这篇文章讲C++类型转换简单明了,所以特别翻译了下。
·
2015-10-21 12:34
类型转换
排序
, 信区:
CPlusPlus
标 题: 请教一个笔试题目 发信站: 水木社区 (Sat Oct 17 22:48:11 2009), 站内 一个长度为len的int数组中,每个单元存储的都是一个随机数
·
2015-10-21 12:49
排序
嵌套的命名空间和匿名的命名空间
namespace
cplusplus
_primer { namespace QueryLib { class Query { /* … */ }; // … } namespace
·
2015-10-21 11:19
命名空间
c++命名空间
namespace
cplusplus
_primer { class SalesItem { /* … */ }; SalesItem operator+(const SalesItem &
·
2015-10-21 11:18
命名空间
c与c++混合编程
源程序中定义的函数int func_c(int),请组织程序的结构c.c, cpp.cpp, pro.h //pro.h #ifndef PRO_H #define PRO_H #ifdef _
cplusplus
·
2015-10-21 11:50
C++
resource for machine learning
转http://www.cse.ust.hk/~ivor C/C++ Programming C++ TutoralThe
cplusplus
.com TutorialC++ StringIntroduction
·
2015-10-21 11:44
VS 2005环境下生成静态lib库及调用方法
lib库及调用方法 生成lib方法: 步骤1: 新建一个空项目,建一个头文件如Test.h #pragma once #ifdef __
cplusplus
·
2015-10-21 11:46
lib
字符串分离函数
http://www.
cplusplus
.com/reference/clibrary/cstring/strtok/ 看一下strtok()函数就会懂了...
·
2015-10-21 11:13
字符串
USB Device Finder
http://www.velleman.eu/images/tmp/usbfind.c#ifdef __
cplusplus
extern "C" { #endif #include
·
2015-10-21 10:34
device
对由 __
cplusplus
和 extern "C" 组成的 C、C++编译器编译标准C函数的通用写法的理解
但是有时可能又会直接用C来调用,不想重新写代码,让标准C编写的dll函数定义在C和C++编译器下都能编译通过,通常会使用以下的格式:(这个格式在很多成熟的代码中很常见) #if defined(__
cplusplus
·
2015-10-20 08:37
extern
在linux下编译遇到 __GNUC_PREREQ 编译错误的解决方法
missingbinaryoperatorbeforetoken"("__BEGIN_DECLSdoesnotnameatype第一个错误位置为系统的string.h的这个位置:#ifdefined__
cplusplus
aflyeaglenku
·
2015-10-19 14:00
json
__GNUC_PREREQ
feature.h
配置文件读写(c语言指针实现)
//cfg_op.h #ifndef_INC_CFG_OP_H #define_INC_CFG_OP_H #ifdef__
cplusplus
extern"C"{ #endif intGetCfgItem
my_sky2012
·
2015-10-12 13:00
extern 关键字的作用
**extern的作用** demo.h头文件#ifndef_DEMO_H #define_DEMO_H #ifdef__
cplusplus
extern"C"{//point1 #endif externinta
chenhittler
·
2015-10-09 10:00
extern-关键字
TeamTalk初学笔记3---关于win-client【第二篇:入口文件_头文件】
C++的英文名字就是
cplusplus
,简写:cpp。这下可以知道入口文件必然是同名文件:teamtalk.cpp了,寻找一番,就可以找到,如下图位置:文件的物理路径:\
pengmx
·
2015-10-06 17:00
tt
蘑菇街
TeamTalk
入口文件
初学笔记
#ifdef __
cplusplus
有什么作用
一般的考虑跨平台使用方法如下: #ifdefined(__
cplusplus
)||defined(c_plusplus)//跨平台定义方法 extern"C"{ #endif //...正常的声明段 #
u013087513
·
2015-09-29 09:00
兼容C++的C头文件书写方式
一书写方式下面是event.h文件的源码:#ifndef_EVENT_H_ #define_EVENT_H_ #ifdef__
cplusplus
extern"C"{ #endif #include
xufeng0991
·
2015-09-25 19:00
C语言
STL源码剖析 [简单应用总结二]
容器://seehttp://www.
cplusplus
.com/reference/stl/ //演示STL容器 #include #include #include #include #include
langb2014
·
2015-09-14 10:00
判断一个程序是c++编译还是c编译
1 #include 2 int main() 3 { 4 using namespace std; 5 6 #ifdef __
cplusplus
7 cout
Mikesworld
·
2015-09-12 08:04
C++
[置顶] C++强大背后
转自MiloYip大神的博客【原文】http://www.cnblogs.com/miloyip/archive/2010/09/17/behind_
cplusplus
.html在31年前(1979年)
u012234115
·
2015-09-10 21:00
C++
c++ primer读书笔记之c++11(二)
其具体接口可参考
cplusplus
.com的介绍,地址如下:http://www.
cplusplus
.com/reference/initializer_list/initializer_list/?
Tocy
·
2015-09-09 22:00
GTK+浅谈之总结
二、详解1、G_BEGIN_DECLS和G_END_DECLS宏#ifdef__
cplusplus
#defineG_BEGIN_DECLSextern"C"{ #defineG_END_DECLS}
taiyang1987912
·
2015-09-02 10:00
gtk
c++标准头文件的结构
标准头文件中一些通用结构的理解#ifndef_CBPLAYCONTROLWRAPPER #define_CBPLAYCONTROLWRAPPER #ifdef__
cplusplus
extern"C
青灯夜
·
2015-09-01 22:00
C++
“#ifdef __
cplusplus
extern "C" { #endif”的定义
“#ifdef__cplusplusextern"C"{#endif”的定义看一些程序的时候老是有“#ifdef__cplusplusextern"C"{#endif”的定义,搞搞清楚是怎么回事:Microsoft-SpecificPredefinedMacros__cplusplusDefinedforC++programsonly. 意思是说,如果是C++程序,就使用extern"C"{而这个
zkl99999
·
2015-08-31 15:00
纯C语言INI文件解析
下面是头文件:#ifndefINI_PARSER_H #defineINI_PARSER_H #ifdef__
cplusplus
extern"C"{ #endif structtag_value_list
explore_world
·
2015-08-26 17:00
C++预定义宏 C++ Predefined Macros
在源文件中插入当前源文件名;__DATE__:在源文件中插入当前的编译日期__TIME__:在源文件中插入当前编译时间;__STDC__:当要求程序严格遵循ANSIC标准时该标识被赋值为1,表明是标准的C程序;//__
cplusplus
涩女郎
·
2015-08-25 08:00
C++ Rand()各种实现
参考链接:http://www.
cplusplus
.com/reference/cstdlib/rand/使用实例: v1=rand()%100;//v1intherange0to99
wishchin
·
2015-08-21 14:00
C++手稿:std::string
参考文档:
cplusplus
.com/strin
yangjvn
·
2015-08-18 14:00
C++基础---简介
1.简介1.1C++的定义C++(即
CPlusPlus
)是在C语言的基础上开发的一种通用程序设计语言或编程语言。1.2C++与C的区别C是C++的基础,C++和C在很多方面是兼容的。
cainv89
·
2015-08-15 11:00
C++
c++标准
C++与C的区别
C++的语言特点
C++的发展历史
c++内存分配
c++内存分配未完成.参考:C++Tutorial-MemoryAllocation-2015http://www.bogotobogo.com/
cplusplus
/memoryallocation.php
JUST DO IT ~
·
2015-08-02 12:00
显示调用c++动态链接库
1.动态链接库生成//operator.h #ifndefOPERATOR_H #defineOPERATOR_H #include #include #ifdef__
cplusplus
extern"C
feixuedudiao
·
2015-08-01 18:00
C++
C语言
单链表的相关操作
#ifndef_SLIST_H #define_SLIST_H #ifdef__
cplusplus
extern"C"{ #endif /*******1.不带头结点的单链表*****/ /**
u010177286
·
2015-07-22 22:00
单链表
printf函数
[-]ParametersReturnValueExampleprintfFrom:http://www.
cplusplus
.com/reference/cstdio/printf/intprintf(
swgshj
·
2015-07-20 17:00
C++单元测试入门指南-在eclipse上建立Google test
原文链接:http://www.codeproject.com/Articles/811934/
Cplusplus
-unit-test-start-guide-how-to-set-up-Goog介绍软件测试是一个庞大而复杂的主题
u012515915
·
2015-07-18 15:00
eclipse
单元测试
gtest
读书笔记
有趣的知识点__
cplusplus
__
cplusplus
其实被定义为一个整数,C++03中被定义为199711L,C++11中被定义为201103L.可以通过下面的代码检测编译器是否支持C++11.
cchd0001
·
2015-06-30 10:00
C和C++混合编译
#ifdef __
cplusplus
extern "C" {&nbs
·
2015-06-18 09:00
编译
shared_ptr
from: http://www.codeproject.com/Articles/541067/
Cplusplus
-Smart-PointersIntroductionOoops.YetanotherarticleonsmartpointersofC
RoomFourteen224
·
2015-06-11 15:00
C++
shared_ptr
pointer
SMART
在linux下制作libxxx.so 动态库以及使用方法
步骤一:创建一个.h头文件,头文件中声明动态库中的函数#ifndef_TEST_H_ #define_TEST_H_ #ifdef__
cplusplus
/*cc++混合编程*/ extern"C"{
CAIYAODENG
·
2015-05-24 10:00
C++_vector的使用
cplusplus
对vector的描述1、vector包含于头文件中2、创建一个vectorvectorvec;3、访问vector中的元素cout::iteratorit; for(it=vec.begin
a7055117a
·
2015-05-20 18:00
C++
cplusplus
库 在线管理; 类似于 python的 pip install 、nodejs 的npm模块
cplusplus
库 在线管理; 类似于 python的 pip install 、nodejs 的npm模块 还有 apache 经常使用的 
·
2015-05-19 17:00
Install
推荐:C++论坛
推荐:C++论坛1.CSDN上的C++论坛:http://bbs.csdn.net/forums/CPPLanguage2.http://www.
cplusplus
.com/3.http://bbs.chinaunix.net
BigLeo
·
2015-05-05 15:00
C++项目中的extern "C"
.*/ #ifdef__
cplusplus
}#endif它到底有什么用呢,你知道吗?而且这样的问题经常会出现在面试or笔试中。
u013553008
·
2015-04-29 12:00
不可或缺 Windows Native (10) - C 语言: 文件
Native 之 C 语言 文件 示例cFile.h #ifndef _MYHEAD_FILE_ #define _MYHEAD_FILE_ #ifdef __
cplusplus
·
2015-04-27 08:00
windows
C++ Tutorial: Sockets - Server & Client using QT - 2015
http://www.bogotobogo.com/
cplusplus
/sockets_server_client_QT.phpUpdates:ThistutorialwaswrittenwithQt4.8
sdhongjun
·
2015-04-23 23:00
qttcpclient
qttcpserver
GDAL获取指定地理坐标像元值、获取指定地理范围影像数据
GdalImage.h#include"StructDef.h"#include"gdal1.11.2/gdal_priv.h"#include"gdal1.11.2/gdal.h"//#ifdef__
cplusplus
Hardy-Lee
·
2015-04-23 15:36
GDAL
全排列算法及实现
blog.sina.com.cn/s/blog_9f7ea4390101101u.html3.http://www.slyar.com/blog/stl_next_permutation.html4.http://www.
cplusplus
.com
xiamentingtao
·
2015-04-22 19:00
全排列
Dll的编写与Dll的显示调用和隐式调用
个方法 具体代码如下:(MathFuncs.h)#pragma once #ifndef _MathFuncs_H #define _MathFuncs_H //定义函数导出 #ifdef __
cplusplus
colorlesswind
·
2015-04-20 21:00
dll
调用
显式
隐式
不可或缺 Windows Native (7) - C 语言: 指针
nbsp;之 C 语言 指针 示例cPointer.h #ifndef _MYHEAD_POINTER_ #define _MYHEAD_POINTER_ #ifdef __
cplusplus
·
2015-04-16 08:00
windows
CPLUSPLUS
获得 一个源文件的头文件依赖。即该文件所需要的所有头文件
核心命令:gcc -M *.h、*.cpp 转: 自动处理头文件的依赖关系 http://blog.csdn.net/su_ocean16/article/details/5374696 现在我们的Makefile写成这样: all: main main: main.o stack.o maze.o
·
2015-04-15 18:00
文件
上一页
21
22
23
24
25
26
27
28
下一页
按字母分类:
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
其他