📄 toolfun.h
字号:
#pragma once
#ifndef _TOOLFUN_
#define _TOOLFUN_
#include <strstream>
#include <string>
using namespace std;
bool strCompare(char *ch1,char *ch2); // compare two string equal.
int toInt( char* str ); // convert digital string to integer.
int toInt( const string& str); // convert digital string to integer.
float toFloat( char* str); // convert digital string to float.
float toFloat( const string& str);// convert digital string to float.
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -