뭐 그냥 뻘 질문입니다만
String description = "Hello, my name is " + name + ". I'm from " + country + ", and I like " + food +
". and you must give me 400$";
String description = "Hello, my name is " + name + ". I'm from " + country + ", and I like " + food
+ ". and you must give me 400$";
String 이 길어질 경우 '+' 를 어디에 넣나요 보통? ㅎㅎ
new BreadBuilder().addTomato().addCheese().addSausage().addCarrot().addBlueberry().addCone().
addOlive().addBean();
new BreadBuilder().addTomato().addCheese().addSausage().addCarrot().addBlueberry().addCone()
.addOlive().addBean();
뭔가 메소드 호출이 막막~ 있을 때 '.' 을 줄 마지막에 넣는게 좋을까요 다음 줄에 넣는게 좋을까요?