如何使用 GreenFoot API 使我的字体变粗?

How do I make my font bold with the GreenFoot API?

我编写了这个字体构造函数来制作我想要的粗体字体,但是每当我尝试编译时,它都会告诉我错误 Cannot find symbol - variable BOLD

Font font = new Font("Arial",font.BOLD, 40);

这些是我要导入的类:

import greenfoot.*;
import java.util.*;
import greenfoot.Font;
import java.lang.Class;

如果有人知道可能的快速修复方法,我们将不胜感激。

您使用的构造函数不正确。根据 documentation:

Constructor and Description

Font(java.lang.String name, boolean bold, boolean italic, int size)

Creates a font from the specified font name, size and style.

应该是这样的(粗体,非斜体):

Font font = new Font("Arial", true, false, 40);

您错误地使用了构造函数并试图访问不存在的实例变量。