📄 strtype.h
字号:
// StrType.h: interface for the StrType class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_STRTYPE_H__16449F4E_8CEE_4942_B704_801249A34192__INCLUDED_)
#define AFX_STRTYPE_H__16449F4E_8CEE_4942_B704_801249A34192__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
class StrType
{
public:
StrType();
StrType( char* p);
virtual ~StrType();
public:
char* Get();
StrType operator+( StrType& s2 );
StrType& operator=( StrType& s2 );
int operator<( StrType& s2 );
int operator>( StrType& s2 );
int operator==( StrType& s2 );
private:
char s[80];
};
#endif // !defined(AFX_STRTYPE_H__16449F4E_8CEE_4942_B704_801249A34192__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -