单选题在Java语言中,小明在他的类SquareRoot中定义了方法method_A,其中包含语句:doublemy_result=Math.sqrt(1000); 他需要导入()。AJava.lang.*BJava.Math.*CJava.util.Math.*;D以上皆非
单选题
在Java语言中,小明在他的类SquareRoot中定义了方法method_A,其中包含语句:doublemy_result=Math.sqrt(1000); 他需要导入()。
A
Java.lang.*
B
Java.Math.*
C
Java.util.Math.*;
D
以上皆非
参考解析
解析:
暂无解析
相关考题:
多选题Hibernate中的查询语句如下 from User u where u.name=:username and u.yearold=:yearold 正确的参数注入方式有()。Aquery.setParameter(“username”,”bluedavy”);Bquery.setParameter(“yearold”,”25”);Cquery.setParameter(“0”,”bluedavy”);Dquery.setParameter(“1”,”25”);
单选题swith(X){ case1: syso(1); case2: case3: syso(3); case4: syso(4); } 当X=2时,运行结果是()。A没有输出任何结果B输出结果为3C输出结果是3和4D输出结果是1、3、4
单选题下列选项中能在JSP页面中实现转向的是()A Response.forward(“/index.jsp”)B Response.sendRedirect(“/index.jsp”)C request.forward(“/index.jsp”)D request. sendRedirect (“/index.jsp”)
多选题下面描述()是正确的Ajava的源程序必须以“.java”或“.jav”扩展名保存Bjava vm可以是软件亦可以是硬件Cjava使用解释器执行代码D用高级语言编写的代码可以让计算机理解并执行它们
单选题在j2ee中,在mysample.java中包含代码:system.out.println(InetAddress.getByName(“aaaa”)).getHostAddress()),但在网络上没有aaaa这台主机。那么该行代码会()A编译运行后什么都不显示B编译运行后显示“aaaa”字符文本C编译不能通过D编译运行后会抛出java.net.UnlnownHostExceptioon异常
多选题在J2EE中,以下对于EJB的类文件描述正确的是() 。AHome接口放置可供客户使用的商业方法BRemote接口放置可供客户使用的商业方法CEJB类提供Bean的商业方法的实际实现D当客户调用在Remote接口中被列出的相应的方法时,EJB类会被容器调用
多选题在J2EE中,对于以下的include指令和include动作,书写正确的是()Ajsp:include page=http://localhost:/8080/my.jsp/B%@ include file=http://localhost:/8080/my.jsp/Cjsp:include file=http://localhost:/8080/my.jsp/D%@ include page=http://localhost:/8080/my.jsp/