그래서 나는이 같은 클래스를 보이는 것을 :JAVA에서 한 행의 메서드 매개 변수로 여러 인스턴스 필드를 설정하는 방법은 무엇입니까?
public class Example {
private String apple;
private String orange;
public void setNew(String apple, String orange) {
//Instead of
this.apple = apple;
this.orange = orange;
//I once saw a way you could do it in one line like
this.(apple, orange) = (apple,orange);
//but this does not compile
}
이 어떻게 한 줄에 오렌지에 사과와 오렌지에 사과를 설정할 수 있습니까?
하나의 명령문이 아니라 한 줄로 입력 할 수 있습니다. – shmosel
그러나, 'this.apple = this.orange = apple'에 의해 한 줄로 같은 값으로 설정할 수 있습니다. – Izruo
C + + 또는 C# 프로그램을 본 것이 확실하지 않습니까? –