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.
クラスのメソッドに次のconstような変数がある場合:
const
public void MyMethod() { const int myVariable = 5; // blah }
myVariable一度だけ(メソッドが初めて呼び出されたとき)またはメソッドが呼び出されるたびに初期化されますか?
myVariable