码迷,mamicode.com
首页 >  
搜索关键字:oracle主键和unique cons    ( 609个结果
stack2
#includeusing namespace std;template class Stack{ private: struct Node{ Object data; Node * next; Node(cons...
分类:其他好文   时间:2014-05-24 09:32:25    阅读次数:215
POSIX线程(1)
POSIX线程库: 与线程有关的函数构成了一个完整的系列,绝大多数函数的名字都是以“pthread_”打头的 要使用这些函数库,要通过引入头文 链接这些线程函数库时要使用编译器命令的“-lpthread”选项 pthread_create函数 功能:创建一个新的线程 原型 int pthread_create(pthread_t *thread, cons...
分类:编程语言   时间:2014-05-22 23:43:59    阅读次数:427
C++ 复制构造和赋值操作符调用
主要是为了记录说明 : class A; A a; A b = a; //这个是调用复制构造函数呢?还是先构造,再调用赋值操作符? 结果是前者。 测试代码:  #include #include class A { public: A() { printf("%s\n", "A constructor"); } A(cons...
分类:编程语言   时间:2014-05-15 11:17:40    阅读次数:365
Pros and Cons of T4 in Visual Studio 2008
Oleg Sych - ? Pros and Cons of T4 in Visual Studio 2008Pros and Cons of T4 in Visual Studio 2008Posted by Oleg SychJanuary 1, 2009T4 is a fully-featur...
分类:其他好文   时间:2014-05-15 11:01:53    阅读次数:327
Oleg Sych - ? Pros and Cons of T4 in Visual Studio 2008
Oleg Sych - ? Pros and Cons of T4 in Visual Studio 2008Pros and Cons of T4 in Visual Studio 2008Posted by Oleg SychJanuary 1, 2009T4 is a fully-featur...
分类:其他好文   时间:2014-05-15 10:44:30    阅读次数:486
C++ const&的一个特性
最近在搜索类似scope exit的实现时,除了发现已经有人向标准委员会提出意见,还得到一些意外的C++特性,这个特性一直都存在,而且很有趣http://herbsutter.com/2008/01/01/gotw-88-a-candidate-for-the-most-important-cons...
分类:编程语言   时间:2014-05-12 13:21:19    阅读次数:414
poj2421
1 //Accepted 312 KB 63 ms 2 //kruskal算法,求最小生成树,把已经存在边的两点之间的权值置为0; 3 #include 4 #include 5 #include 6 using namespace std; 7 cons...
分类:其他好文   时间:2014-05-09 09:52:12    阅读次数:300
POJ 1673 三角形垂心
EXOCENTER OF A TRIANGLE Time Limit: 1000MS   Memory Limit: 10000K Total Submissions: 3209   Accepted: 1259 Description Given a triangle ABC, the Extriangles of ABC are cons...
分类:其他好文   时间:2014-05-03 21:14:28    阅读次数:340
set容器的实现
set容器是以红黑树容器为基础实现的,在其基础上稍加改变接口即可 #ifndef MY_SET_H_INCLUDED #define MY_SET_H_INCLUDED #include"my_rb_tree.h" namespace juine { template struct identity { const T& operator()(cons...
分类:其他好文   时间:2014-04-29 13:16:20    阅读次数:376
609条   上一页 1 ... 59 60 61
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!