2022.09.03
IT用語
プロパティ(property)
以下のソースを見てくさだい。
// クラス class PropertySample { // メンバ変数(フィールド変数) private int value = 0; // 値の設定 public void set( int v ) { value = v; } // 値の取得 public int get() { return ; } }
プロパティに関するコンテンツ
「プロパティ」に関係があるコンテンツをまとめています。