- ベストアンサー
import宣言は必須ではない?
・JAVA言語的には、import宣言は必須ではない? という理解で合っているでしょうか? (abstractクラスだからimport宣言が必要とか、そういうことは有り得ない?) ・パッケージ名をその都度書いていけば、仕様的には問題ない? ・実際には、import宣言なしで組んだりすることはないと思うのですが…
- みんなの回答 (1)
- 専門家の回答
質問者が選んだベストアンサー
これが該当する説明だと思いますが、 http://docs.oracle.com/javase/specs/jls/se7/html/jls-7.html#jls-7.5 | An import declaration allows a named type or a static member to be referred | to by a simple name (§6.2) that consists of a single identifier. | | Without the use of an appropriate import declaration, the only way to refer | to a type declared in another package, or a static member of another type, | is to use a fully qualified name (§6.7). ・JAVA言語的には、import宣言は必須ではない? という理解で合っているでしょうか? あっています。 ・パッケージ名をその都度書いていけば、仕様的には問題ない? そうです。
お礼
回答&リンク提示ありがとうございます。 大変参考になりましたー