facebook twitter hatena line email

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

提供: 初心者エンジニアの簡易メモ
移動: 案内検索
(ページの作成:「==サンプル== #include <string> std::string str = "Hello World"; log("%s", str.c_str()); // Hello World」)
 
行3: 行3:
 
  std::string str = "Hello World";
 
  std::string str = "Hello World";
 
  log("%s", str.c_str()); // Hello World
 
  log("%s", str.c_str()); // Hello World
 +
 +
==文字列結合==
 +
str += "hoge";

2018年9月25日 (火) 11:01時点における版

サンプル

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

文字列結合

str += "hoge";