我是靠谱客的博主 老实帽子,最近开发中收集的这篇文章主要介绍c++命令行控制,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

#include
#include
#include
using namespace std;

vector split(string s, const string d)
{
if (s.empty()) return {};
vector res;
std::string strs = s + d;
size_t pos = strs.find(d);
size_t len = strs.size();
while (pos != string::npos) {
string x = strs.substr(0, pos);
if (x != “”) res.push_back(x);
strs = strs.substr(pos + d.size(), len);
pos = strs.find(d);
}
return res;
}

std::string& strip(std::string& s)
{
if (s.empty())
{
return s;
}

s.erase(0, s.find_first_not_of(" "));
s.erase(s.find_last_not_of(" ") + 1);
return s;

}

int main()
{
std::cout.precision(4);//设定输出的有效位数

char cmd_org[256];
string cmd_data;

for (;;)
{
	std::cout << "cmd>";
	std::cout.flush();
	std::cin.getline(cmd_org, sizeof(cmd_org)); //强行将缓冲区的数据清空
	cmd_data = string(cmd_org);

	vector<string>cmd_string = split(strip(cmd_data), " ");
	vector<string>cmd_list;
	for (auto cmd_str : cmd_string)
	{
		cmd_list.push_back(cmd_str);
	}

	if (cmd_list.size() !=2)
		continue;

	if (cmd_list[0] != "using_add")
		continue;

	int abc = 0;
	auto using_add = [&abc](int mode)
	{
		if (mode == 0)
		{
			abc += 1;
		}
		else
		{
			abc += 2;
		}
	};
	
	using_add(std::stoi(cmd_list[1]));
	cout << abc << endl;

最后

以上就是老实帽子为你收集整理的c++命令行控制的全部内容,希望文章能够帮你解决c++命令行控制所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(59)

评论列表共有 0 条评论

立即
投稿
返回
顶部