请问这是什么意思?
F:\java\chess\src\chess\chessApp.java:16: 不能解析符号符号:类 chessFrame
位置:类 in chess.chessApp
chessFrame frame = new chessFrame();
^
F:\java\chess\src\chess\chessApp.java:16: 不能解析符号
符号:类 chessFrame
位置:类 in chess.chessApp
chessFrame frame = new chessFrame();
^
----------------解决方案--------------------------------------------------------
chessFrame frame = new chessFrame();
这说明chessFrame 这个类编译器找不到
----------------解决方案--------------------------------------------------------