自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(6)
  • 资源 (7)
  • 收藏
  • 关注

原创 ConferenceXp Document

<br />http://cct.cs.washington.edu/project-wiki/index.php/ConferenceXP_5_Installation_Notes

2010-12-30 11:22:00 917

转载 #pragma comment

<br /> #pragma comment( comment-type ,["commentstring"] ) <br />  comment-type是一个预定义的标识符,指定注释的类型,应该是compiler,exestr,lib,linker之一。 <br />  commentstring是一个提供为comment-type提供附加信息的字符串。 <br />  注释类型: <br />  1、compiler: <br />  放置编译器的版本或者名字到一个对象文件,该选项是被linker忽略

2010-12-30 09:33:00 615

转载 C++ http 请求

<br />#include <stdio.h>#include <windows.h>#include <wininet.h>#define MAXSIZE 1024#pragma comment(lib, "Wininet.lib") void urlopen(_TCHAR*);int _tmain(int argc, _TCHAR* argv[]){ urlopen(_T("http://coderzh.cnblogs.com")); ret

2010-12-29 16:59:00 1839

转载 class 和 struct 的区别

<br />对于cpp <br />struct和class其实是基本相同的2个关键字 <br />struct默认成员是public,class默认是private

2010-12-29 16:00:00 508

转载 c++ 笔试题(部分)

<br />①链表反转<br />单向链表的反转是一个经常被问到的一个面试题,也是一个非常基础的问题。比如一个链表是这样的: 1->2->3->4->5 通过反转后成为5->4->3->2->1。<br />最容易想到的方法遍历一遍链表,利用一个辅助指针,存储遍历过程中当前指针指向的下一个元素,然后将当前节点元素的指针反转后,利用已经存储的指针往后面继续遍历。源代码如下:<br />struct linka { <br />int data; <br />linka* next; <br />}; <br

2010-12-29 15:12:00 767

原创 关于多态的题目

<br />#include <stdio.h>#include <tchar.h>#include <iostream>using namespace std;class A{public: virtual void Test(int intTemp=50);};class B:public A{public: virtual void Test(int intTemp=100);};void A::Test( int i

2010-12-29 15:03:00 698

cocos2d-x手机游戏开发魔塔项目源码

cocos2d-x手机游戏开发魔塔项目源码

2012-12-14

lua 调用 c++ dll 示例

lua 调用 c++ dll 示例 vs2010 编写的,这个例子很简单哦!

2012-10-09

Mac_X_Lion.iso_种子.torrent

Mac_X_Lion.iso_种子.torrent

2012-09-11

Qt treewidget checkbox

treewidget的复选框,使用treewidget的复选框,使用

2012-09-11

简单的数据库操作,VC++ acess

简单的数据库操作,VC++ acess,简单的数据库操作,VC++ acess简单的数据库操作,VC++ acess

2010-07-11

ASP.NET BBS

简单的BBS源程序 三层模式 开发 access 数据库

2008-04-20

ExtJS Api

Extjs API 文档

2008-04-20

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除