public class GameFrame extends JFrame{
public void paint(Graphics g) {
Font f = new Font("楷体",Font.BOLD,100);
g.setFont(f);
g.drawString("圆", 150,150);
}
中报错:The type java.lang.CharSequence cannot be resolved. It is indirectly referenced from required .class files
------解决方案--------------------
参考:http://www.blogjava.net/zJun/archive/2007/10/16/153374.html