单项选择题

下列横线处应填写的语句是______。
import java. awt. * ;
public class FirstFrame extends Frame
public static void main(String args[])
FirstFrame fr=new FirstFrame("First container!");
fr. setSize(240,240);
fr. setBackground(Color. yellow);

public FirstFrame(String str)
super(str);

A.fr. setVisible(true)
B.fr. setVisible(false)
C.fr. setFrame(true)
D.fr. setmyFrame(true)