Count.this

A constructor that creates an object of the Count class with the given parameter in the form of unsigned value. If called without parameters, then the default parameter is zero.

class Count
this
(
uint size = 0
)

Parameters

size uint

Number of unsigned bytes.

Typical usage:

Count count = new Count(0);

Meta