本文整理汇总了C++中SimpleString::startsWith方法的典型用法代码示例。如果您正苦于以下问题:C++ SimpleString::startsWith方法的具体用法?C++ SimpleString::startsWith怎么用?C++ SimpleString::startsWith使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类SimpleString
的用法示例。
在下文中一共展示了SimpleString::startsWith方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: parse
bool CommandLineArguments::parse()
{
bool correctParameters = true;
for (int i = 1; i < ac; i++) {
SimpleString argument = av[i];
if (argument == "-v")
verbose_ = true;
else if (argument.startsWith("-r"))
SetRepeatCount(ac, av, i);
else if (argument.startsWith("-g"))
SetGroupFilter(ac, av, i);
else if (argument.startsWith("-n"))
SetNameFilter(ac, av, i);
else if (argument.startsWith("-o"))
correctParameters = SetOutputType(ac, av, i);
else if (argument.startsWith("-p"))
correctParameters = plugin_->parseArguments(ac, av, i);
else
correctParameters = false;
if (correctParameters == false) {
return false;
}
}
return true;
}
示例2: createUserText
SimpleString TestFailure::createUserText(const SimpleString& text)
{
SimpleString userMessage = "";
if (!text.isEmpty())
{
//This is a kludge to turn off "Message: " for this case.
//I don't think "Message: " adds anything,a s you get to see the
//message. I propose we remove "Message: " lead in
if (!text.startsWith("LONGS_EQUAL"))
userMessage += "Message: ";
userMessage += text;
userMessage += "\n\t";
}
return userMessage;
}