char*に文字リテラルを代入するのは禁止と聞きました。
static、変数、定数、constexprにかかわらずすべて禁止、という考えであっていますか?
cpp
1//すべて禁止? 2char *str1 = "str1"; 3const char *str2 = "str2"; 4static char *str3 = "str3"; 5static const char *str4 = "str4"; 6constexpr char *str5 = "str5"; 7static constexpr char *str6 = "str6";
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/04/09 02:04
2020/04/09 02:07
2020/04/09 02:09
2020/04/09 02:32