facebook twitter hatena line email

「Cocos2dx/std::string」の版間の差分

提供: 初心者エンジニアの簡易メモ
移動: 案内検索
(ページの作成:「==サンプル== #include <string> std::string str = "Hello World"; log("%s", str.c_str()); // Hello World」)
(相違点なし)

2017年4月5日 (水) 17:55時点における版

サンプル

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