填空题

在Java中,对象流以______方式传送和存储。

【参考答案】

串行化
<上一题 目录 下一题>
热门 试题

填空题
Java中,可以通过建立java.lang.______类或其子类的实例创建和控制线程。
填空题
将下面程序补充完整。public class PowerCale {public static void main(String[] args) {double x=5.0;System.out.println(x+ to the power 4 is +power(x,4));System.out.println( 7.5 to the power 5 is +power(7.5,5));System.out.println( 7.5 to the power 0 is +power(7.5,0));System.out.println( 10 to the power -2 is +power(10,-2));}static double ______ (double x,int n) {if(n>1)return x * power(x,n-1);else if(n<0)return 1.0 power(x,-n);else return n==0 1.0:x:}}
相关试题
  • 如果一个线程调用______()方法,将...
  • Java输入 输出流中包括字节流、_____...
  • 将下面Applet程序补充完整。import java....
  • Swing中的组件往往采用MVC结构,MVC指的是M...
  • 按照Java中的命名约定,方法名的起始字母一...