Default values for object fields
Object fields are allowed to have a constant default value. The type of field can be omitted if a default value is given.
type
Foo = object
a: int = 2
b: float = 3.14
c = "I can have a default value"
Bar = ref object
a: int = 2
b: float = 3.14
c = "I can have a default value"
The explicit initialization uses these defaults which includes an object created with an object construction expression or the procedure default; a ref object created with an object construction expression or the procedure new; an array or a tuple with a subtype which has a default created with the procedure default.
type
Foo = object
a: int = 2
b = 3.0
Bar = ref object
a: int = 2
b = 3.0
block: # created with an object construction expression
let x = Foo()
assert x.a == 2 and x.b == 3.0
let y = Bar()
assert y.a == 2 and y.b == 3.0
block: # created with an object construction expression
let x = default(Foo)
assert x.a == 2 and x.b == 3.0
let y = default(array[1, Foo])
assert y[0].a == 2 and y[0].b == 3.0
let z = default(tuple[x: Foo])
assert z.x.a == 2 and z.x.b == 3.0
block: # created with the procedure `new`
let y = new Bar
assert y.a == 2 and y.b == 3.0
当前内容版权归 nim-lang.org 或其关联方所有,如需对内容或内容相关联开源项目进行关注与资助,请访问 nim-lang.org .