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
extern "C"
时常在cpp的代码之中看到这样的代码: #ifdef __
cplusplus
extern "C" { #endif //一段代码 #ifdef __
cplusplus
} #endif
·
2015-11-12 09:54
extern
#if defined(__
cplusplus
)
源自http://blog.sina.com.cn/s/blog_69fc9ee001010b90.html 由于C++编译器需要支持函数的重载,会改变函数的名称,因此dll的导出函数通常是标准C定义的。这就使得C和C++的互相调用变得很常见。但是有时可能又会直接用C来调用,不想重新写代码,让标准C编写的dll函数定义在C和C++编译器下都能编译通过,通常会使用以下的格式:(这个格式在很多成熟的代
·
2015-11-12 08:38
in
C++11 thread::detach(2)
原文地址:http://www.
cplusplus
.com/reference/thread/thread/detach/ public member function <thread>
·
2015-11-12 08:04
thread
“#ifdef __
cplusplus
extern "C" { #endif”的定义(zz)
“#ifdef __
cplusplus
extern "C" { #endif”的定义 看一些程序的时候老是有“#ifdef __cplusplusextern "
·
2015-11-11 19:35
extern
c++ 好玩的类
http://www.
cplusplus
.com/reference/valarray/valarray/valarray/ A valarray object is designed to hold
·
2015-11-11 19:28
类
const 常量数据,只读
1 http://www.cnblogs.com/ronny/p/3672501.html 2 http://www.cnblogs.com/hellogiser/p/
cplusplus
-const-summay.html
·
2015-11-11 19:45
Const
常量
以下内容转载自http://www.
cplusplus
.com/doc/tutorial/constants/ Constants Constants are expressions with
·
2015-11-11 17:20
常量
变量和类型
一下内容转载自http://www.
cplusplus
.com/doc/tutorial/variables/ Variables and types The usefulness of the "
·
2015-11-11 17:19
变量
vector学习笔记
以下内容转自http://www.
cplusplus
.com/reference/vector/vector/ class template <vector> std::
·
2015-11-11 17:17
vector
c++ list 合并list
1.参考 http://www.
cplusplus
.com/reference/list/list/ 2.合并 主要有两个函数:splice()和merge()splice()有三种调用形式:第一种
·
2015-11-11 17:55
list
STL
http://www.
cplusplus
.com/reference/stl/ http://net.pku.edu.cn/~yhf/UsingSTL.htm #include<set>
·
2015-11-11 16:01
STL
mem_fun与mem_fun_ref的区别
一句话:container<ClassType*>就用mem_fun,container<ClassType>就用mem_fun_ref 参考: http://www.
cplusplus
.com
·
2015-11-11 15:06
区别
extern "C"用法详解
1.前言: 时常在cpp的代码之中看到这样的代码: #ifdef __
cplusplus
extern "C" { #endif //一段代码 #ifdef __
cplusplus
·
2015-11-11 15:45
extern
From double Click to Main: PAL initialization
在托管代码中,对于Main的启动还有点不同,有一个PAL层在启动main方法之前启动: #ifdef __
cplusplus
extern "C" #endif
·
2015-11-11 14:25
double
Friendship and inheritance
原地址: http://www.
cplusplus
.com/doc/tutorial/inheritance/ Friend functions In principle, private
·
2015-11-11 13:02
inheritance
Special members
原地址:http://www.
cplusplus
.com/doc/tutorial/classes2/ Special members [NOTE: This chapter requires
·
2015-11-11 13:01
CI
Pointers
原地址 http://www.
cplusplus
.com/doc/tutorial/pointers/ Pointers In earlier chapters, variables have
·
2015-11-11 13:52
poi
第一个入门WDM驱动
HelloWDM.h #pragma once #ifdef __
cplusplus
extern "C" { #endif #include <ntddk.h
·
2015-11-11 10:05
入门
第一个入门NT驱动
HelloDDK.h #pragma once #ifdef __
cplusplus
extern "C" { #endif #include <ntddk.h
·
2015-11-11 10:04
入门
C++ 模板:奇特递归模板模式(Curiously Recurring Template Pattern -CRTP)和 静多态(Static polymorphism)
Curiously Recurring Template Pattern (CRTP) to Template Pattern:http://www.codeproject.com/Tips/537606/
Cplusplus
-Prefer-Curiously-Recurring-Template-Patt
·
2015-11-11 10:27
Polymorphism
函数:atexit
atexit (void (*func)(void)); 2、功能:注册退出main函数之后将要被执行的函数; 3、参考:http://www.
cplusplus
.com
·
2015-11-11 09:44
exit
库
http://www.
cplusplus
.com/reference/cctype/ 函数名称 返回值 isalnum() 如果参数是字母数字,即字母或数字,该函数返回true
·
2015-11-11 09:13
type
lua学习笔记1
lua中调用c的函数 #include <stdio.h> #include <string.h> #ifdef __
cplusplus
extern "
·
2015-11-11 09:28
学习笔记
ETLLib库走读
#ifndef __
cplusplus
·
2015-11-11 07:18
etl
C++11 CAS无锁函数compare_exchange_weak的使用
可以先看一下
cplusplus
给出的用这个函数实现无锁链表的例子: // atomic::compare_exchange_weak example: #include <iostream>
·
2015-11-11 03:24
Exchange
Fortran的点点滴滴——调用C++
C子程序只要在函数名字加上一个下划线,Fortran就可以调用的,但是C++程序不行,然而,我们可以利用这一点作文章: #C++部分 #首先要声明一下 #ifdef __
cplusplus
·
2015-11-11 02:11
fortran
HDU1000-ACM牛刀小试
对了发现一个好的博客: http://acm.
cplusplus
.me/category/race ACM解题报告 http://www.
cplusplus
.me/
·
2015-11-11 02:58
ACM
itoa : Convert integer to string
Quote from: http://www.
cplusplus
.com/reference/cstdlib/itoa/ function
·
2015-11-11 02:06
Integer
std::for_each
我们先来看看C++官方网站上对for_each的描述 http://www.
cplusplus
.com/reference/algorithm/for_each/ (注:以下内容是我对C
·
2015-11-11 02:17
each
android开发调用c++共享库so文件
lt;stdlib.h> #ifdef __cplusplusextern "C" {#endif int go() { return 555; } #ifdef __
cplusplus
·
2015-11-11 00:17
Android开发
1111
www.cnblogs.com/no7dw/archive/2011/01/28/1946778.html 为什么在mac上itoa()函数不能用呢,引入了stdlib.h http://www.
cplusplus
.com
·
2015-11-11 00:26
Vector的一些事
原因简单,其他方式请参见这个博文:http://www.
cplusplus
.me/1112.html int a[] = {-1, 1, 1, 1, -1}; vector<int>
·
2015-11-09 14:56
vector
std::find
我们先来看看C++官方网站上对find的描述 http://www.
cplusplus
.com/reference/algorithm/find/ (注:以下内容是我对C++官方网站上内容的理解,不准确的地方请见谅
·
2015-11-09 12:47
find
C++项目中的extern "C" {}
引言 在用C++的项目源码中,经常会不可避免的会看到下面的代码: ------------------------------------- #ifdef __
cplusplus
extern
·
2015-11-08 10:58
extern
c++和c混合编程
c++和c混合编程第一步:在C头文件的最顶端加上如下代码(__
cplusplus
只存在于C++编译器下)#ifdef__
cplusplus
extern"C"{ #endif第二步:在C头文件的最尾部加入如下代码
CAIYAODENG
·
2015-11-08 09:00
C++强大背后
原文在这里:http://www.cnblogs.com/miloyip/archive/2010/09/17/behind_
cplusplus
.html Orz....... ==========
·
2015-11-08 09:52
C++
#ifdef __
cplusplus
深度剖析
BLOG_ARTICLE_251752.HTM 时常在cpp的代码之中看到这样的代码: #ifdef __
cplusplus
·
2015-11-07 14:26
if
C++03下的delegate实现-
function轮子的主要代码如下: #ifndef FUNCTION_
CPLUSPLUS
_03 #define FUNCTION_
CPLUSPLUS
_03 #inclu
·
2015-11-07 12:33
delegate
#ifdef __
cplusplus
extern "C" { #endif”的定义的含义
http://blog.csdn.net/zhangyulin54321/article/details/7696012 看一些程序的时候老是有 “#ifdef __
cplusplus
extern
·
2015-11-02 19:52
extern
C++11:实用特性
今天逛
cplusplus
.com发现C++还真多了不少方便使用的特性,先了解些最常用的 初始化列表 vector<int> tmp({1,2,3,4});
·
2015-11-02 19:00
C++
extern "C" {} 来沟通C和C++
通常,在C语言的头文件中经常可以看到类似下面这种形式的代码: #ifdef __
cplusplus
extern "C" { #endif
·
2015-11-02 19:32
extern
POJ 1051 P,MTHBGWB
推荐一个c++的网站(
cplusplus
.com - The C++ Resources Network
·
2015-11-02 18:50
poj
[翻译] C++ STL容器参考手册(第二章
)
返回总册 本章节原文:http://www.
cplusplus
.com/reference/deque/deque/ 1. std::deque template < class T, class
·
2015-11-02 17:48
deque
[翻译] C++ STL容器参考手册(第一章
)
返回总册 本章节原文:http://www.
cplusplus
.com/reference/array/array/ 1. std::array (C++11支持) template < class
·
2015-11-02 17:48
array
用bitset进行2进制输入输出
更多关于bitset标准类型的介绍见: http://book.csdn.net/bookfiles/17/1001760.shtml 更多关于bitset操作符的介绍见: http://www.
cplusplus
.com
·
2015-11-02 16:05
bitset
流处理类:std::ostringstream, ostream, istream, iostream, fstream等
详细可查阅:http://www.
cplusplus
.com/reference/istream/istream/ std::ostringstream用法浅析转自: http://www.cnblogs.com
·
2015-11-02 15:03
iostream
用string存取二进制数据
首先提一下STL中string的参考资料:http://www.
cplusplus
.com/reference/string/string/ ,不懂的朋友可以看下。
·
2015-11-02 09:19
String
C++相关资源
jtc1/sc22/wg21/ C/C++ Reference http://www.cppreference.com/ The C++ Resources Network http://www.
cplusplus
·
2015-11-01 15:02
C++
CPlusPlus
中如何把__FUNCTION__, __FILE__ 宏转化成wchar_t(unicode)类型
写代码的时候遇到个小问题,需要把__FUNCTION__宏变成unicode的类型。参考了一下VC中_T宏的写法。很简单,不过也许有人并不知道。编译环境VS2008+WinXP 代码 // The code to demonstrate how to convert __FUNCTION__ macro to a unicode str
·
2015-11-01 15:00
function
C++ fill 和memset
以下内容来自www.
cplusplus
.com---------------------------------------------------FILL:template voidfill(ForwardIteratorfirst
Yukizzz
·
2015-10-31 16:00
补充
上一页
19
20
21
22
23
24
25
26
下一页
按字母分类:
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
其他