
vc6
文章平均质量分 86
lilang66
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
为 VC6 程序的 Release 版本添加调试信息
众所周知,VC6项目通常默认被分为两个编译版本:Debug 和 Release。前者主要用于开发调试,后者用于对外发布。绝大多数情况下,这个两个版本在功能上是完全一致的,只不过 Debug 版本多出了一些便于调试的特性。但是在极少数情况下,Debug 版本和 Release 版本程序运行结果不一样。例如,在 Debug 版本下,程序运行正常,而在 Release 版本下,程序却可能非法退出。因转载 2013-05-17 20:22:44 · 754 阅读 · 0 评论 -
栈的应用 十进制与八进制的转换
#include using namespace std;#define STACK_INIT_SIZE 100#define STACK_INCREATEMENT 10typedef struct node { int *base; int *top; int size;}sqStack;/* * 初始化对战 * * @return 0 * * @pa原创 2014-01-19 16:57:42 · 913 阅读 · 0 评论 -
VC6常用快捷键
原地址:http://bbs.youkuaiyun.com/topics/310157883 1.检测程序中的括号是否匹配 把光标移动到需要检测的括号(如大括号{}、方括号[]、圆括号()和尖括号 2.查看一个宏(或变量、函数)的宏定义 把光标移动到你想知道的一个宏上,就比如说最常见的DECLARE_MAP_MESSAGE上按一下F12(或右键菜单中的Go To Defit转载 2014-03-31 23:44:32 · 851 阅读 · 0 评论 -
BASE64编码
最近在看http://www.cnblogs.com/A-Song/archive/2012/01/29/2331204.html原创 2014-04-06 00:56:08 · 577 阅读 · 0 评论 -
碰到一个基本输入输出流的问题,以及对于getline使用总结。
#include using namespace std; #include istream& getStream(istream & input){ cout<<input;} int main(){ istream s; std::string str; cout<<"请输入一个string:"; while( cin>>st原创 2014-04-23 00:34:39 · 2172 阅读 · 0 评论 -
C++Primer第四版p328习题10.30
#if !defined __text__query__#define __text__query__#pragma warning(disable:4786)#include #include #include typedef std::vector::size_type line_no;class TextQuery {public: void read_file(i原创 2014-04-23 00:55:34 · 665 阅读 · 0 评论