?? myio.h
字號:
#ifndef _MYIO_H
#define _MYIO_H
#include <iostream>
#include <conio.h>
#include "String.h"
#include "Help.h"
#define myend '\r'
class myIO
{
public:
myIO();
~myIO();
String getIn(int type = 1);
void putOut(String str);
void SetPreIn(String aPre);
void SetPreOut(String aPre);
void SetCode(char ch);
friend myIO& operator>>(myIO& io, String& str);
friend myIO& operator<<(myIO& io, const String& str);
private:
char passcode;
String prein;
String preout;
};
#endif
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -