-4

不断得到“预期的进口 auq.;” 对于这些行,无法弄清楚原因。

import ats.;
import auq.;
import avf.;
import awb.;
import bcx.;
import bjy.;
4

1 回答 1

3

您需要删除.或需要在其后放置特定的类或包名称。这是无效的:

import ats.;

它应该是以下任何一种形式:

import ats.*;  // to import all the types from ats package
import ats.specifiClass; // to import a specific type from the ats package

推荐阅读:http ://docs.oracle.com/javase/tutorial/java/package/usepkgs.html

于 2013-09-15T16:19:59.883 回答