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.
次の間に違いはありますか:
this->textBox1->Text = this->textBox1->Text + ("2");
この:
this->textBox1->Text = this->textBox1->Text + "2";
それとも単なる構文糖ですか?
それはまったく同じなので、結果に関する限り違いはありません。コンパイラは最初に括弧内の内容を評価します。これは単なる ("2") であるため、結果は "2" になり、2 番目のコードと同じになります。