1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

プロパティを使いたい

Posted at

#はじめに
初投稿なので、サクッと書いていきたいと思います。
とりあえず、プロパティを使えるようになりたい。それだけ。
ググっただけではすぐに忘れてしまうタイプなので、こうやって記事(?)を書いてみることにした。

#書き方
とりあえず、"get"と"set"という言葉を覚えておく。

test
private float number;
public float Number
{
    get
    {
        return number;
    }
    set
    {
        number = value;
    }
}

setは、valueという謎の変数で値を受け取る。
#さいごに
これだけだと、プロパティの良さが全くわかりませんね。
ちなみに自分もまだよくわかっていません。
気になったら調べてみよう!(結局そうなる)

1
0
3

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?