- 博客(4)
- 资源 (1)
- 收藏
- 关注
原创 oracle中的group by
oracle中的group by 1.创建一张测试数据表 create table Test(empid number, depid number, salenum number ); insert into Test(empid, depid, salenum)
2012-03-30 18:31:42
363
原创 c++静态数据成员
1.c++中的静态数据成员 例子 #include using namespace std; class Test { private: static int _i; public: int getI() { return _i; } }; //必须要在类外定义,因为在c++中 类中的是声明 并没产生空间分配 i
2012-03-30 08:53:56
260
原创 stable_sort
#include #include #include #include using namespace std; typedef struct information { int index; string name; }Test; b
2011-08-09 09:58:52
286
原创 操作剪贴板
剪贴板:一、将数据送到剪贴板 、内存配置 HGLOBAL hGlobal ; hGlobal = GlobalAlloc (GHND | GMEM_SHARE,(lstrlen (pText) + 1) * sizeof (TCHAR)) ; 为什么不用malloc: 在Windows中执行的应用程序之间必须要共享剪贴
2007-10-30 00:32:00
390
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人