最多140个字
发布时间:2015-12-13 13:41:13
//sort函数源码:template <class _RandomAccessIter>inline void sort(_RandomAccessIter __first, _RandomAccessIter __last) { __STL_REQUIRES(_RandomAccessIter, _Mutable_RandomAccessIterator); __STL_REQUIRES(typename iterator_traits<_RandomAccessIter>::value_type, _LessThanCompa.........【阅读全文】
发布时间:2015-04-03 16:41:05
#includeusing namespace std;templateclass FreeList{ private: FreeList* next;//空闲链表的下一个元素 &.........【阅读全文】
发布时间:2014-06-10 09:26:51
本文分析了当对象作为函数参数时栈帧的结构并给出了栈帧结构的图示。点击(此处)折叠或打开//C++源码。//VC6.0#include#includeusing namespace std;class CBase{.........【阅读全文】
发布时间:2014-06-08 13:39:37
关于qsort函数对一维数组,二维数组(即字符串)的排序比较常见,本文介绍采用qsort函数对动态二维数组(如:char**p=new char*[2]; p[0]=new char[8];p[1]=new char[8];)进行排序。点击(此处)折叠或打开/* void qsort(void *base,int nelem,int width,int (*fcmp)(const void *.........【阅读全文】
发布时间:2014-05-10 14:34:36
C++中delete表达式执行的操作是:1,调用析构函数;2,释放对象内存。如果父类的析构函数没有声明为virtual函数,且子类中至少存在一个virtual函数,此时将子类的对象地址赋值给父类指针。当对父类的指针执行delete操作时,会调用父类析构函数,然后在释放内存时(即delete表达式执行的操作的2,释放对象内存)出现崩溃。.........【阅读全文】
发布时间:2014-05-07 12:59:18
点击(此处)折叠或打开//参考http://www.cnblogs.com/satng/archive/2010/12/30/2138833.html#includeusing namespace std;//thunk技术模拟typedef void (*fun)(void *,int i);.........【阅读全文】
发布时间:2014-04-23 12:56:44
1,二维数组:内存布局示例:点击(此处)折叠或打开int main(){ int p[3][4]; p[1][0]=123; /* 1, p+1是.........【阅读全文】
发布时间:2014-03-18 10:15:08
//C++ Primer 第四版1,C++使用链接指示(linkage directive)指出任意非C++函数所用的语言。2,链接指示有两种形式:单个的或复合的。链接指示不能出现在类定义或函数定义的内部,它必须出现在函数的第一次声明上。3,声明非C++函数:extern "C" size_t strlen(const char *);extern "C"{ &.........【阅读全文】
发布时间:2014-03-05 19:54:51
1,The library function operator new and operator delete are misleadingly named. Unlike other operator functions,such as operator=,these functions do not overload the new or delete expressions.In fact,we cannot redefine the behavior of the new and delete expressions.A new expression executes b.........【阅读全文】
发布时间:2014-02-24 18:44:08
1,编写调用端代码(文件名:DllCaller.java)package com.whut.qinchao.jni;//qinchao 2013/12/31public class DllCaller {static {/** * 加载需要的类.........【阅读全文】