本文整理汇总了C++中tokenizer::asVector方法的典型用法代码示例。如果您正苦于以下问题:C++ tokenizer::asVector方法的具体用法?C++ tokenizer::asVector怎么用?C++ tokenizer::asVector使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类tokenizer
的用法示例。
在下文中一共展示了tokenizer::asVector方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: tokens
information
of a parameter as listed above.
@param in :: Input Stream
@param f :: FitParameter to write to
@return Current state of stream
*/
std::istream &operator>>(std::istream &in, FitParameter &f) {
typedef Mantid::Kernel::StringTokenizer tokenizer;
std::string str;
getline(in, str);
// allow a comma in the final position.
tokenizer tokens(str, ",", tokenizer::TOK_TRIM |
tokenizer::TOK_IGNORE_FINAL_EMPTY_TOKEN);
auto values = tokens.asVector();
if (values.size() < 3) {
g_log.warning()
<< "Expecting a comma separated list of at each three entries"
<< " (any of which may be empty strings) to set information about a "
"fitting parameter"
<< " instead of: " << str << '\n';
return in;
}
try {
f.setValue(boost::lexical_cast<double>(values[0]));
} catch (boost::bad_lexical_cast &) {
f.setValue(0.0);