public
創(chuàng)新互聯(lián)于2013年開始,是專業(yè)互聯(lián)網(wǎng)技術服務公司,擁有項目網(wǎng)站設計、成都網(wǎng)站建設網(wǎng)站策劃,項目實施與項目整合能力。我們以讓每一個夢想脫穎而出為使命,1280元新建做網(wǎng)站,已為上家服務,為新建各地企業(yè)和個人服務,聯(lián)系電話:18980820575
structure
struc
public
name
as
string
public
shengao
as
integer
……
end
structure
public
items
as
struc()
readonly
property
people(argname
as
string)
as
struc
get
for
each
i
as
struc
in
items
if
i.name=argname
then
reture
i
next
end
get
end
property
struc可以用class,property可以用function,people通過參數(shù)返回一個對象,對象可以來源于某個數(shù)組的某個元素,也可以是其他來源。
people也可以是類的
構(gòu)造方法
,而shengao等是類的成員,但你的寫法是錯誤的,構(gòu)造方法必須用new
實例化
當父類構(gòu)造函數(shù)有多個重載時,不加base
則自動匹配父類無參數(shù)的構(gòu)造函數(shù);base()關鍵字可以顯示地指定參數(shù)以匹配父類的構(gòu)造函數(shù);EG:
class
people
{
public
string
str
=
"moren";
public
people(string
s)
{
this.str
=
s;
Console.WriteLine(this.str);
}
public
people()
{
Console.WriteLine(str);
}
}
class
me
:
people
{
public
me()
{
Console.WriteLine("me子類");
}
}
class
you
:
people
{
public
you()
:
base("you子類")
{
Console.WriteLine("you子類");
}
}
static
void
Main(string[]
args)
{
string
str
=
"main";
me
me1
=
new
me();
Console.WriteLine("===============================");
you
you1
=
new
you();
Console.Read();
結(jié)果:
moren
me子類
===============================
you子類
you子類
另外,虛機團上產(chǎn)品團購,超級便宜
你可以直接寫Public Sub New(ByVal name As String, ByVal price As Double,byval haskdisk as boolean)
,但在寫這句之前要先引用父類的構(gòu)造函數(shù), 就是加上一句怕你不明白,完整的寫法就是這樣:
mybase(name , price);
Public Sub New(ByVal name As String, ByVal price As Double,byval haskdisk as boolean) ;
這樣就行了,希望我的回答可以幫助你!