public class HelloWorld{ public HelloWorld(){ System.out.println("Á¦1ÀÇ »ý¼ºÀÚ"); } public HelloWorld(String strCon){ System.out.println("Á¦2ÀÇ »ý¼ºÀÚ"+strCon); } public String process(String strInput) { System.out.println("È£Ã⼺°øµÊ1:"+ strInput); return ("¼º°øÇß¾î¿ä1"); } public String process(String strInput1,String strInput2) { System.out.println("È£Ã⼺°øµÊ2:"+ strInput1+strInput2); return ("¼º°øÇß¾î¿ä2"); } }