tars 소스 만담 12편--------tcoption.h/tc_option.cpp(명령줄 해석)
./a.out --name1=value1 --name2=value2
tc_option은 전문적으로 이 일을 하는 것이니 다음에는 스스로 해석하지 마세요.
원본 보기:
/**
* Tencent is pleased to support the open source community by making Tars available.
*
* Copyright (C) 2016THL A29 Limited, a Tencent company. All rights reserved.
*
* Licensed under the BSD 3-Clause License (the "License"); you may not use this file except
* in compliance with the License. You may obtain a copy of the License at
*
* https://opensource.org/licenses/BSD-3-Clause
*
* Unless required by applicable law or agreed to in writing, software distributed
* under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
* CONDITIONS OF ANY KIND, either express or implied. See the License for the
* specific language governing permissions and limitations under the License.
*/
#include "util/tc_option.h"
#include "util/tc_common.h"
namespace tars
{
void TC_Option::decode(int argc, char *argv[])
{
_mParam.clear();
vector v;
for(int i = 1; i < argc; i++)
{
v.push_back(argv[i]);
}
for(size_t i = 0; i < v.size(); i++)
{
if(v[i].length() > 2 && v[i].substr(0,2) == "--")
{
parse(v[i]);
}
else
{
_vSingle.push_back(v[i]);
}
}
}
void TC_Option::parse(const string &s)
{
string::size_type pos = s.find('=');
if( pos != string::npos)
{
_mParam[s.substr(2, pos-2)] = s.substr(pos+1);
}
else
{
_mParam[s.substr(2, pos-2)] = "";
}
}
string TC_Option::getValue(const string &sName)
{
if(_mParam.find(sName) != _mParam.end())
{
return _mParam[sName];
}
return "";
}
bool TC_Option::hasParam(const string &sName)
{
return _mParam.find(sName) != _mParam.end();
}
vector& TC_Option::getSingle()
{
return _vSingle;
}
map& TC_Option::getMulti()
{
return _mParam;
}
}
"--"및 "="에 따라 로 해석mParam (키/value 맵) 에서 직접 사용하십시오.
일목요연하니 더 말할 필요가 없다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
tars 소스 만담 12편--------tcoption.h/tc_option.cpp(명령줄 해석)바이너리 프로그램을 실행할 때 종종 입력 파라미터를 정해야 한다. 그러면 바이너리 프로그램에 대응하는 코드는 어떻게 이런 파라미터를 해석해야 합니까?예를 들면 다음과 같습니다. tc_option은 전문적으로 이 일을...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.