Erstellen ein Objekt einer Klasse
-
hallo,
in der methode execute() der klasse myAppAction
ich erstell ein Instanz einer anderen klass, die
in derselben package ist.
package myApp;
public class myAppAction extends Action
{
public execute( ....){myAppModell model = new myAppModel();
...}
}package myApp;
public class myAppModel
{
public myAppModel( ){}
...
}Fehler:
cann not resolve sympole myAppModel
obwohl die klasse myAppModel existiert in der selben packegewas kann die Fehler sein
-
Kommt die Fehlermeldung während der Kompilierung oder während der Ausführung deines Codes?