자바 의 값 에 따라 전달 되 고 인용 에 따라 전달 되 는 코드 에 대한 상세 한 설명

먼저 int 실험 사용:

public class TTEST { 
  private static  List<UserEntity> mList = new LinkedList<UserEntity>();  
  public static void main(String[] args) { 
    int a = 0; 
    changeA(a); 
    System.out.println("a = "+a); 
  } 
   
  public static void changeA(int a){ 
    a = 1; 
  } 
}
출력:a=0
이것 은 int 값 에 대해 값 에 따라 전달 한 다 는 것 을 설명 한다.다른 몇 가지 기본 유형 도 마찬가지다.
자신 이 정의 한 클래스 UserEntity 를 사용 하여 실험 합 니 다:

public class UserEntity { 
  private String name; 
  public String getName() { 
    return name; 
  } 
  public void setName(String name) { 
    this.name = name; 
  } 
} 

public class TTEST { 
  public static void main(String[] args) { 
    UserEntity userEntity = new UserEntity(); 
    userEntity.setName("  "); 
    changeName(userEntity); 
    System.out.println("name = "+userEntity.getName()); 
  } 
  public static void changeName(UserEntity userEntity){ 
    userEntity.setName("   "); 
  } 
} 
출력:name=쿠 필 열
linkedList를 사용 하여 실험 합 니 다:

import java.util.LinkedList; 
import java.util.List; 
public class TTEST { 
   private static List<UserEntity> mList = new LinkedList<UserEntity>();  
  public static void main(String[] args) { 
    UserEntity userEntity = new UserEntity(); 
    userEntity.setName("  "); 
    addUser(userEntity); 
    System.out.println("name = "+userEntity.getName()); 
  } 
  public static void addUser(UserEntity userEntity){ 
    mList.add(userEntity); 
    mList.get(0).setName("  "); 
  } 
} 
출력:name=원숭이
이것 은 우리 가 정의 한 클래스 를 사용 할 때 인용 에 따라 전달 된다 는 것 을 설명 한다.
이어서 String 실험 을 사용 합 니 다:

public class TTEST { 
  public static void main(String[] args) { 
    String str= "   "; 
    changeStr(str); 
    System.out.println("str = "+str); 
  } 
  public static void changeStr(String str){ 
    str = "   "; 
  } 
} 
출력:str=시작
Integer 로 실험 해도 변 함 이 없다 는 것 을 알 수 있다.
자바 에 내 장 된 대상 도 값 으로 전달 된다 는 뜻 입 니 다.그래서 우 리 는 다음 과 같은 총 결 을 할 수 있다.
우리 가 정의 하 는 클래스 생 성 대상 이 모두 인용 전달 이 라면 시스템 에 내 장 된 기본 유형 과 대상 은 모두 전달 을 가리킨다.
총결산
위 에서 말 한 것 은 소 편 이 여러분 에 게 소개 한 자바 의 값 에 따라 전달 하고 인용 에 따라 전달 하 는 것 입 니 다.여러분 에 게 도움 이 되 기 를 바 랍 니 다.궁금 한 점 이 있 으 시 면 저 에 게 메 시 지 를 남 겨 주세요.소 편 은 제때에 답 해 드 리 겠 습 니 다.여기 서도 저희 사이트 에 대한 여러분 의 지지 에 감 사 드 립 니 다!

좋은 웹페이지 즐겨찾기