📄 stringobject.h
字号:
// StringObject.h: interface for the StringObject class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_STRINGOBJECT_H__30247095_45C7_4675_BD79_7D50B2468126__INCLUDED_)
#define AFX_STRINGOBJECT_H__30247095_45C7_4675_BD79_7D50B2468126__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include <string>
using namespace std;
#include "Object.h"
class StringObject:public Object
{
private:
string sptr;
public:
StringObject();
StringObject(string);
~StringObject();
bool operator>(Object &);
bool operator!=(Object &);
void Print();
};
#endif // !defined(AFX_STRINGOBJECT_H__30247095_45C7_4675_BD79_7D50B2468126__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -