问答详情
源自:8-6 Java 中的构造方法

一个类创建的名字不同于类的方法,在同一个包下执行的另一个类怎么调用这个方法?

package class02;


public class Telephone {

public void Telephone1(float a1,float b1,float c1) {

float a;

float b;

float c;  

a=a1;

b=b1;

c=c1;

System.out.print(a);

System.out.print(b);

System.out.print(c);

}

}


package class02;

import class02.Telephone;

public class PHONE {


public static void main(String[] args) {

// TODO Auto-generated method stub

Telephone1 phone2=new Telephone1(1.0f,2.0f,3.0f);


}


}


提问者:l_z_y_ 2018-07-22 18:18

个回答

  • 969999666696
    2018-07-22 20:55:18

    同一个包的话就不需要“import class02.Telephone;”了;

    把“Telephone1 phone2=new Telephone1(1.0f,2.0f,3.0f);”改成这样:

    Telephone phone2=new Telephone();

    phone2.Telephone1(1.0f,2.0f,3.0f);