facebook twitter hatena line email

「Cocos2dx/Log」の版間の差分

提供: 初心者エンジニアの簡易メモ
移動: 案内検索
(サンプル)
行1: 行1:
 
==サンプル==
 
==サンプル==
 
  log("hoge");
 
  log("hoge");
  log("StringUtils::format("%dです", num));
+
int hoge = 1;
 +
  log("%i", hoge);
  
 
==android studioで確認した場合==
 
==android studioで確認した場合==
 
  02-20 16:59:52.260 18958-18981/com.example.helloworld D/cocos2d-x debug info: hoge
 
  02-20 16:59:52.260 18958-18981/com.example.helloworld D/cocos2d-x debug info: hoge

2017年2月21日 (火) 16:43時点における版

サンプル

log("hoge");
int hoge = 1;
log("%i", hoge);

android studioで確認した場合

02-20 16:59:52.260 18958-18981/com.example.helloworld D/cocos2d-x debug info: hoge