I have the following class.
我有以下课程。
class User
{
constructor( username )
{
this._username = username;
}
get username()
{
return this._username;
}
}
class UI have the following class.
我有以下课程。
class User
{
constructor( username )
{
this._username = username;
}
get username()
{
return this._username;
}
}
class U