题目内容

以下代码的功能是实现对指定文件的复制功能,请阅读程序完成程序中缺失的代码。import java.io.*;public class CopyFile {public static void main(String[] args) throws IOException {File file= new File("E:\\MyPicture2021.jpg");FileInputStream in = new FileInputStream(file);_____(1)___________ out = new FileOutputStream("D:\\copy\\"+file.getName());byte[] data = new byte[(int) file.length()];in.read(data);out.write(data);in.close();___(2)_______ ;//关闭输出流对象}}

查看答案
更多问题

看下面的数组定义:int[] numbers = new int[50];a) 数组有多少个元素?b) 数组中第一个元素的索引是多少?c) 数组中最后一个元素的索引是多少?

使用下面的类定义回答下列问题。publicclassTemperature {intcurrentTemp;String warningLight;publicvoidsetCurrentTemp(inttemp) {currentTemp = temp;}publicString getWarningLight(intcurrentTemp) {String tempColour = "";switch(currentTemp) {case10: tempColour = "blue";break;case20: tempColour = "orange";break;case30: tempColour = "red";break;}returntempColour;}}1)为此类命名一个字段属性。2) setCurrentTemp方法的参数类型是什么?3) getWarningLight方法的返回值类型是什么?

合伙企业是指自然人、法人和其他组织按照《中华人民共和国合伙企业法》在中国境内设立的普通合伙企业和有限合伙企业。( )

A. 对
B. 错

红宝石,是刚玉的一种,主要成分是氧化铝,红色来自铬。

A. 对
B. 错

答案查题题库