Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
いくつかの異なる言語について学んできたので、「char」データ型を持つ言語は Java だけであることがわかりました。たとえば、javascript の charAt() は文字列を返しますが、java のメソッドは文字を返します。「文字」データ型の理由はありますか?他の言語がそれらを使用しないのはなぜですか?
ジェームズ・ゴズリングが教えてくれた
ほとんどの場合、単一の文字値を使用している場合は、プリミティブ char 型を使用します。
例えば:
char ch = 'a';
と言いたい、自分に問いかけたい
とchar a='a'; _String a="a";
char a='a';
String a="a";
How much memory does a char variable takes ?
と
How much memory does a string literal or string object takes ?
あなたがこれを理解するなら、これはあなたの質問に答えます