看的Java語言程序設計基礎篇第10版
書第9章第6節3中的程序清單9-5中用了Point2D類。在引用時寫的是:
import javafx.geometry.Point2D
我用的是Eclipse,提示
Multiple markers at this line
- The import javafx.geometry.Point2D is never used
- Access restriction: The type 'Point2D' is not API (restriction on required library 'D:\java\jdk1.8.0_45\jre\lib\ext
\jfxrt.jar')
後來查java的文檔Java Platform Standard Edition 8 Documentation,寫的是
java.awt.geom.Point2D
這是咋回事?書上寫錯了嗎?
這是因為這個類是Eclipse的JRE帶的,但並不屬於JAVA的公開API。
解決方法:
右擊項目->屬性->Java Compiler->Errors/Warnings->Deprecated and restricted API->Forbidden reference -> Ignore