本文整理汇总了C++中string::Append方法的典型用法代码示例。如果您正苦于以下问题:C++ string::Append方法的具体用法?C++ string::Append怎么用?C++ string::Append使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类string
的用法示例。
在下文中一共展示了string::Append方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: OnStackFrame
void OnStackFrame(const wxStackFrame& frame)
{
string location = "[unknown location] ";
if (frame.HasSourceLocation())
location = S_FMT("(%s:%d) ", frame.GetFileName(), frame.GetLine());
wxUIntPtr address = wxPtrToUInt(frame.GetAddress());
string func_name = frame.GetName();
if (func_name.IsEmpty())
func_name = S_FMT("[unknown:%d]", address);
stack_trace.Append(S_FMT("%d: %s%s\n", frame.GetLevel(), location, func_name));
}
示例2: logMessage
/* Console::logMessage
* Prints a message to the console log
*******************************************************************/
void Console::logMessage(string message)
{
// Add a newline to the end of the message if there isn't one
if (message.size() == 0 || message.Last() != '\n')
message.Append("\n");
// Log the message
log.push_back(message);
// Announce that a new message has been logged
MemChunk mc;
announce("console_logmessage", mc);
}