私はアプリケーションを開発しようとしています..以下はスニペットです
class metro_nodes {
public String station;
public GeoPoint point; }
public class mainscreen extends MapActivity {
/** Called when the activity is first created. */
MapController controller;
double latitude,longitude;
LocationManager loc;
Location lastknownloc;
LocationListener loclistener;
List<GeoPoint> geopoints = new ArrayList<GeoPoint>();
MapView mapView;
private LinkedList<metro_nodes> station_location = new LinkedList<metro_nodes>();
metro_nodes anand_nagar;
anand_nagar.station = "anand_nagar";
}
最後から 2 番目の行で、「トークン "駅" の構文エラー、このトークンの後に VariableDeclaratorId が必要です」と表示されます。
このステートメントを中括弧で囲むと、エラーが削除されます..しかし、Java lang nullポインタ例外が発生します...問題は何ですか??