Posted in 面试题 onJune 04, 2012
答案:可以。
public class Test
{
public Test(String iceboy)
{
System.out.println(iceboy);
}
public void Test(String iceboy)
{
System.out.println(iceboy);
}
public static void main(String[] args)
{
Test a = new Test(“abc”);//输出“abc”
a.Test(“iceboy”);//输出“iceboy”
}
}
public class Test
{
public Test(String iceboy)
{
System.out.println(iceboy);
}
public void Test(String iceboy)
{
System.out.println(iceboy);
}
public static void main(String[] args)
{
Test a = new Test(“abc”);//输出“abc”
a.Test(“iceboy”);//输出“iceboy”
}
}
方法名是否可以与构造器的名字相同
声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Tags in this post...
Reply on: @reply_date@
@reply_contents@