2
2

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.

Haxe でプロパティ

Last updated at Posted at 2012-09-19

プロパティは次のような感じで書く

PropertyExample.hx
// 普通の
public var filename(default, defailt):String;

// Readonly - 同じクラスからは setter 使える
public var filename(default, null):String;

// Readonly - 同じクラスでも setter 使えない
public var filename(default, never):String;

// setter/getter メソッドを指定
public var filename(getFileName, setFileName):String;

null と never の違いは、同じクラスからアクセスできるかどうか。
C# と対比させると下のような感じ?

PropertyExample.cs
// Haxe の null と同じ
public string Filename { get; private set; } }
// Haxe の never と同じ
public string Filename { get; } }

参考

Properties - Haxe

2
2
0

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
2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?