?? cell.cpp
字號:
// Cell.cpp: implementation of the CCell class.
//
//////////////////////////////////////////////////////////////////////
#include "stdafx.h"
#include "Sudu.h"
#include "Cell.h"
#ifdef _DEBUG
#undef THIS_FILE
static char THIS_FILE[]=__FILE__;
#define new DEBUG_NEW
#endif
//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////
CCell::CCell()
{
value=0;
testvalue=0;
// num=new int [10];
memset(num,1,sizeof(int)*10);
num[0]=1;
}
CCell::~CCell()
{
// delete [] num;
}
void CCell::initCell()
{
for(int i=1;i<10;i++)
{
num[i]=i;
}
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -