Java - 静态方法?

时间:2015-06-08 15:44:32

标签: java javafx


我试图了解以下JavaFX示例。我不明白为什么没有必要创建一个对象(在“openButton.setOnAction”,“handle”,“openFile”) - 因为“openFile”不是静态方法?!

感谢。

public function buildForm(FormBuilderInterface $builder, array $options)
{
    $builder
        ->add('avatar')
        ->add('city')
        ->add('country', 'country')
        ->add('firstName')
        ->add('lastName')
        ->add('address')
        ->add('mobile')
        ->add('phone')
        ->add('user', new UserType($this->get('security.context')->getToken()->getUser()))
    ;
}

}

0 个答案:

没有答案