zoukankan      html  css  js  c++  java
  • 语言java题库

    final修饰对象

    public class Solution {
        public static void main(String[] args) {
            final String o = new String();
            String s = new Solution().addOne(o);
            System.out.println(o == s);//false
        }
    
        public String addOne(String o) {
            o = new String();//编译时不报错
            return o;
        }
    }
    public class Solution {
        public static void main(String[] args) {
            String o = new String();
            String s = new Solution().addOne(o);
        }
    
        public String addOne(final String o) {
            o = new String();//编译时报错
            return o;
        }
    }
  • 相关阅读:
    Vue自定义指令 directive
    Vue过滤器 filters
    贪心
    家庭作业
    线段
    数列极差
    shell
    智力大冲浪
    加工生产调度
    喷水装置
  • 原文地址:https://www.cnblogs.com/t1314/p/15765686.html
Copyright © 2011-2022 走看看