자바 중 + 의 연산 규칙

762 단어 자바
1. 자바 의 덧셈 우선 순 위 는 왼쪽 에서 오른쪽으로
2. 문자열 "옆 에 있 는 + 번 호 는 문자열 의 연결 이 덧셈 이 아니 라 는 뜻 입 니 다.
3. '문자' 뒤의 + 번 호 는 '문자' 의 ascall 코드 값 과 뒤의 값 을 더 한 다 는 뜻 입 니 다.
class DataTypeDemo9 {
    public static void main(String[] args){
        System.out.println("hellow"+'a'+'1');   // 输出helloa1
        System.out.println('a'+1+"hello");       // 输出为98hellow  ('a'='A'+'0'  ,97 = 65 + 32  )(97+1 再连接hellow 字符串)
        System.out.println("5+5="+5+5);        // 输出为字符串5+5=55(字符串的连接)
        System.out.println(5+5+"=5+5");        // 输出为10=5+5  (先算出5+5的运算 得出10再连接字符串"5+5")
        
        
    }
}  

다음으로 전송:https://www.cnblogs.com/guojiayi/p/10443539.html

좋은 웹페이지 즐겨찾기