この単純なコードの 2 行目は好きではありません。
string str = "Jamin rules";
string str2(str.length()*charbits, '0');
エラーは
error: expected primary-expression before ')' token
compilation terminated due to -Wfatal-errors.
ちょうどあなたが知っているので、
charbits
私が定義した変数です
#define charbits 8*sizeof(char);
入力するとコードが機能するため、それが問題だと思います
string str2(str.length()*8, '0');
代わりは。この微妙なニュアンスを教えてください。