次のコードは、次のようなエラーを返します。"constructor call must be the first statment in a constructor."
理解できません。私のコードのコンストラクターは最初のステートメントです。私は何を間違っていますか?
public class labelsAndIcons extends JFrame
{
public labelFrame()
{
super( "Testing JLabel" );
}
}