A.使用contentFiles函數(shù) B.使用dirFiles函數(shù) C.使用dir函數(shù) D.使用list函數(shù),列出子目錄下的所有文件和文件夾名稱
A.append函數(shù)用于在已有的字符串末尾添加新的內(nèi)容 B.insert函數(shù)的作用是在字符串的某個位置插入一個字符 C.setCharAt函數(shù)的作用是將String或StringBuffer字符串的某個字符串替換 D.replace函數(shù)的作用是替換一段子串 E delete函數(shù)用語刪除整個字符串
字符串的append函數(shù)可以添加多種內(nèi)容,以下append函數(shù)的使用中,錯誤的是() StringBuffer strb1 = new StringBuffer(); Integer intObj = new Integer(33);
A.strb1.append(3.14159); B.strb1.append(’數(shù)’); C.strb1.append(true); D.strb1.append(intObj);