美文网首页
2021-02-18【Dart】语法记录

2021-02-18【Dart】语法记录

作者: 持刀的要迟到了 | 来源:发表于2021-03-02 16:19 被阅读0次

    1.命名构造函数

    class Rect
    {
      const Rect.posAndSize(this.pos, this.size); //命名构造函数
    /// Gets the empty rectangle.
      static const empty = Rect.posAndSize(Vec.zero, Vec.zero);
    }
    

    c#改写:可以使用静态函数:

            public static RoomTile Junction(Direction direction)
            {
                var rtn = new RoomTile()
                {
                    tile = null,
                    direction = direction
                };
                return rtn;
            }
    

    相关文章

      网友评论

          本文标题:2021-02-18【Dart】语法记录

          本文链接:https://www.haomeiwen.com/subject/dzugxltx.html