zoukankan      html  css  js  c++  java
  • 面试异常的趣味题,欢迎来战!!!!!

    public class Test {

    public static void main(String[] args) {

               System.out.println(test4());

               System.out.println("y = " + y);
    }

    public static String test4() {
                   String aa = "aa";
             try {
                      aa = "bb";
                      return aa;
                } catch (Exception e) {
                     e.printStackTrace();
               } finally {
                    aa = "cc";
              }
               return aa;

    }

                                                                                                                                                                                                            正确答案:bb

    ********************************************************************************************************************************************************************************************

    public class Test {

    public static void main(String[] args) {

        int y = test5();

    }


    public static int test5() {
               int x = 1;
           try {
                        System.out.println("A");
                        return ++ x;
                } catch (Exception e) {
                        System.out.println("D");
               } finally {
                        System.out.println("B");
                       ++x;
             }
              System.out.println("C");
              return x;
        }

                                                                                                                                                                                               正确答案:A   B   2

  • 相关阅读:
    【Kubernetes学习笔记】-kubeadm 手动搭建kubernetes 集群
    教你快速搭建NFS服务
    【Kubernetes学习笔记】-服务访问之 IP & Port & Endpoint 辨析
    【Kubernetes学习笔记】-使用Minikube快速部署K8S单机学习环境
    Linux RDP 会话中无法打开VSCode 解决办法
    Jenkins 凭证管理
    linux 后台运行进程:& , nohup
    使用私有gitlab搭建gitbook持续集成
    VS Code 使用
    Markdown Rules 详解
  • 原文地址:https://www.cnblogs.com/suger-4/p/11972431.html
Copyright © 2011-2022 走看看