1 #include 2 using namespace std; 3 4 class Values 5 { 6 private: 7 8 //类里的 9 const int cSize; //常量成员的初始化,必须在构造函数中进行,每个对象都有,只是成员常量数据在初...
分类:
其他好文 时间:
2015-06-01 13:10:48
阅读次数:
160
p333.3 1 #include 2 #include 3 #include 4 #include 5 using namespace std; 6 7 class Golf{ 8 private: 9 static const int Len = 40;10 char full...
分类:
编程语言 时间:
2015-05-26 18:35:58
阅读次数:
225
p375.5 1 //头文件 2 #include 3 4 #ifndef _STONEWT_H 5 #define _STONEWT_H 6 class Stonewt{ 7 private: 8 static const int lbs_per_stn = 14; 9...
分类:
编程语言 时间:
2015-05-25 12:59:56
阅读次数:
159
p333.3 1 #include 2 #include 3 #include 4 #include 5 using namespace std; 6 7 class Golf{ 8 private: 9 static const int Len = 40;10 char full...
分类:
编程语言 时间:
2015-05-25 00:54:21
阅读次数:
214
条款一 c++ 为一个语言联邦1、四个层次 C:blocks,语句,预处理器,内置数据类型,数组,指针面向对象的C++:封装,多态,继承Template C++STL条款二 尽量以const,enum,inline代替#define Static const常量的声明和定义,声明应该是在头文件当中,...
分类:
编程语言 时间:
2015-05-09 23:20:14
阅读次数:
144
#include
#include
using namespace std;
//因为只是为了练习DFS和BFS 数据结构定义的很随意 没有优化类啦 能用就行
class Graph
{
private:
static const int MAX=100;
int weight[MAX][MAX];//任意一个图最大节点数为MA
int nodes;
int vertexs;...
分类:
其他好文 时间:
2015-05-08 13:04:48
阅读次数:
109
#include
#include
#include
using namespace std;
class BTree{
static const int M = 2;
struct BTNode{
int keyNum;
int key[2 * M - 1]; //关键字数组
struct BTNode* child[2 * M];//孩子结点数组
bool i...
分类:
编程语言 时间:
2015-05-04 10:06:49
阅读次数:
133
项目需要输入框的文字最多为4个,为了实现这个功能,在网上把资料翻遍了,没有一个能用的。后来不得不自己实现,折腾了好久,终于搞定了。小技巧分享给大家。
代码如下:
static const
NSInteger Max_Character_Num =
4;
- (IBAction)onTextFieldEditingChanged:(id)sender
{
NSString *la...
分类:
移动开发 时间:
2015-04-24 21:10:24
阅读次数:
1658
关键字
extern static const typedef define sizeof union
extern表示的是“已经存在一个变量,但是不在当前的编译单元内,需要在其他编译单元中寻找。”
extern尽量写到.h文件中Extern语句频繁的用于在多个文件之间的跨范围数据传递
static会定义一个变量
1)修饰局部变量便存放在静态数据区
2)修饰全局变量...
分类:
编程语言 时间:
2015-04-24 10:39:29
阅读次数:
124
1 /* base64编码 */ 2 static const char* base64_enc_map = \ 3 "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwx...
分类:
其他好文 时间:
2015-04-23 19:32:06
阅读次数:
118