當父類構(gòu)造函數(shù)有多個重載時,不加base
創(chuàng)新互聯(lián)專注于福建企業(yè)網(wǎng)站建設,成都響應式網(wǎng)站建設公司,購物商城網(wǎng)站建設。福建網(wǎng)站建設公司,為福建等地區(qū)提供建站服務。全流程按需網(wǎng)站建設,專業(yè)設計,全程項目跟蹤,創(chuàng)新互聯(lián)專業(yè)和態(tài)度為您提供的服務
則自動匹配父類無參數(shù)的構(gòu)造函數(shù);base()關(guān)鍵字可以顯示地指定參數(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?Class?Form2
Dim?test?As?String
Public?Sub?New(ByVal?_test?As?String)
test?=?_test
End?Sub
End?Class
Form1 中 New Form2("abc") 即可傳參給 Form2 中的 test。
但在 VB.NET 中,沒必要這么麻煩,只需要聲明為 Public,即可直接方法,如:
Public?Class?Form2
Public?test?As?String
End?Class
Form1 中直接 Form2.test = "abc" 即可。
public
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)造方法的命名規(guī)則有所不同,但都不允許編程人員任意命名。 這是強制規(guī)定的,沒有為什么。
比如:
c++、java、c#等語言規(guī)定構(gòu)造方法必須與類名相同。
而vb.net的構(gòu)造方法統(tǒng)一叫New(實際上是一個過程Sub)。
此外,我們一般把__init__方法叫做python的構(gòu)造方法。