package com.imooc;public class sayhello { public static void main(String[] args) { // TODO Auto-generated method stub sayhello anybody=new sayhello(); anybody.hello(); anybody.hello("小明"); } public void hello() { System.out.println("hello!"); } public void String(String name) { System.out.println("hello,"+name+"!"); } }
添加回答
举报
0/150
提交
取消