我目前正在做一个 Java 项目,并且觉得 StringBuffer 对执行这个特定任务有很大帮助,我正在“构建”一个矩阵的字符串表示:
/**
* Returns a String representation of the Matrix using the getIJ getter
* function. You should use MaF.dF to format the double numbers to a
* sensible number of decimal places and place the numbers in columns.
*
* @return A String representation of the Matrix
*/
public String toString() {
//String stringBuilder = new String
StringBuffer beep = new StringBuffer;
for(i=0; i<m-1; i++){
for(j=0; j<n-1; j++){
}
// You need to fill in this method
}
我已经在 Java 程序中单独尝试过,看起来还不错,但是后来我尝试了一些在线的示例 Java 程序,但它没有编译。是StringBuffer
内置在 Java 中的,还是需要导入包?我不允许为此项目导入任何包。
另外,如果有人能告诉我 MaF.dF 到底是什么?它是如何使用的?我认为它是 MaInput 的一部分,我在网上找不到任何东西。