javaplus
Posted 哈哈呵
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javaplus相关的知识,希望对你有一定的参考价值。
package test; public class Human { String name; char sex; int age; float height; float weight; public Human(String Name,char Sex,int Age){ this.name=Name; this.sex=Sex; this.age=Age; } public void information(){ System.out.println(name+"\n"+sex+"\n"+age); } public void eat(){ System.out.println("eat food"); } public static void main(String[] args){ new Human("李建",‘男‘,18); } }以上是关于javaplus的主要内容,如果未能解决你的问题,请参考以下文章