请说出下列程序的输出结果。import java.io.IOException;public class Main {public static void main(String args[]){try {methodA();}catch(IOException e){System.out.print("你好");return;}finally {System.out.println(" fine thanks");}}public static void methodA() throws IOException{throw new IOException();}}
查看答案
请说出下列程序的输出结果。interface Com{public void speak();}public class Main {public static void main(String args[]) {Com p=()->{System.out.println("p是接口变量");};p.speak();}}
给出下列【代码】注释标注的代码的输出结果。abstract class A {abstract int get(int a,int b);}public class E {public static void main(String args[]) {A a=new A() {public int get(int a,int b){return a+b;}};int m = a.get(2,5);a=new A() {public int get(int a,int b){return a*b;}};int n = a.get(2,5);System.out.printf("%d:%d",m,n);//【代码】}}
给出下列【代码】注释标注的代码的输出结果。class RedCowForm {static class RedCow { //静态内部类RedCow是外嵌类中的一种静态数据类型void speak() {System.out.println("红牛");}}}class E{public static void main(String args[]) {RedCowForm.RedCow red = new RedCowForm.RedCow();red.speak(); //【代码】}}
难溶强电解质的溶度积Ksp与下列哪些因素有关()
A. 沉淀的量
B. 溶液的浓度
C. 电解质的本性
D. 体系的温度
E. 溶液的体积