ccstring.h
来自「N6100彩屏显示器的MSP430F425驱动程序」· C头文件 代码 · 共 28 行
H
28 行
#ifndef __CCSTRING__
#define __CCSTRING__
class CCString{
public:
CCString(char *);
CCString();
char * tocstr(){return str;}
private:
char str[50];
public:
void operator =(char*);
friend CCString& operator +(CCString & ccstr,char* str);
friend CCString& operator +=(CCString & ccstr,char* str);
friend CCString& operator +(CCString &ccstr,unsigned int inum);
friend CCString& operator +=(CCString &ccstr,unsigned int inum);
friend CCString& operator +=(CCString &ccstr,float inum);
friend CCString& operator +(CCString &ccstr,float inum);
};
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?