-2
我在我的textArea
上撥打我所有的.append()
電話時出錯。爲什麼我會遇到這個問題?Netbeans追加錯誤
private void outputComputer(Computer computer) {
textArea.append("Laptop: " + computer.getLaptop());
textArea.append("Processor: ");
textArea.append(computer.getProcessor());
textArea.append("Graphics Card: ");
textArea.append(computer.getGraphicsCard());
textArea.append("Ram: ");
textArea.append(computer.getRam());
textArea.append("Hard Drive: ");
textArea.append(computer.getHardDrive());
textArea.append("Operating System: ");
textArea.append(computer.getOperatingSystem());
textArea.append("Monitor Size: ");
textArea.append(computer.getMonitorSize());
}
你得到了什麼錯誤? – Mureinik
什麼錯誤,爲什麼你把它標記爲JavaScript?你需要提供更多的細節。 – scrappedcola
無法找到符號符號:方法追加(字符串)位置:變量文本區域類型對象 –