java定义一个类

发布网友 发布时间:2022-04-23 12:55

我来回答

3个回答

热心网友 时间:2023-07-15 03:28

public class Demo {
    public static void demo(){
        Student student = new Student();
        student.speak("小明",18);
    }

    public static void main(String[] args) {
        Demo.demo();
    }
}


public class Student {
    String name = null;
    int age = 0 ;
    public void speak( String str , int i){
            name = str ;
            age = i ;
        System.out.println("我的名字是"+ name+",今年"+ age + "岁" );
    }
}

差不多就是这个意思!!!

热心网友 时间:2023-07-15 03:28

public claa Student{ //类名Student
public static void speak(String[] args){
String name="张三";//名字用字符串接收
int age=18;//年龄用整形,年龄没有小数 System.out.println("我的名字是:"+name+",今年"+age+"岁");
//我的名字是:张三,今年18岁
望采纳。

}

}

热心网友 时间:2023-07-15 03:29

游戏软件开发者

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com