facebook twitter hatena line email

Cocos2dx/std::string

提供: 初心者エンジニアの簡易メモ
2018年9月25日 (火) 11:01時点におけるAdmin (トーク | 投稿記録)による版

移動: 案内検索

サンプル

#include <string>
std::string str = "Hello World";
log("%s", str.c_str()); // Hello World

文字列結合

str += "hoge";