为什么下面这段代码会报错:public class draft { public static void main(String[] args) { folat[] f = { 2.3f }; } }
时间: 2024-02-14 09:18:19 浏览: 101
draftjs_exporter:用于将Draft.js ContentState转换为HTML的库
这段代码会报错是因为写错了float的拼写,将folat写成了folat。正确的代码应该是:
```
public class draft {
public static void main(String[] args) {
float[] f = { 2.3f };
}
}
```
这样就不会报错了。
阅读全文