1 Star 4 Fork 2

Hic/popnet_modified

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
SString.h 741 Bytes
一键复制 编辑 原始数据 按行查看 历史
Hic 提交于 2020-06-10 11:34 . start commit
#ifndef NETWORK_STRING_H_
#define NETWORK_STRING_H_
/*###########################################################################*/
#include <string>
#include <strstream>
using namespace std;
/*===========================================================================*/
// Automatically converts strings to many other types.
class Conv {
public:
Conv(const string & str);
operator bool();
operator signed char();
operator unsigned char();
operator short();
operator unsigned short();
operator int();
operator unsigned();
operator long();
operator unsigned long();
operator float();
operator double();
private:
string str_;
};
/*###########################################################################*/
#endif
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/hic_0757/popnet_modified.git
git@gitee.com:hic_0757/popnet_modified.git
hic_0757
popnet_modified
popnet_modified
master

搜索帮助