在Netbeans中是否有创建方法的快捷方式?

问题描述 投票:0回答:1

在Apache Netbeans IDE(例如PHP)中是否有像Visual Studio中那样创建方法(有输入等)的快捷方式,如下图所示。

在Visual Studio中是否有创建方法的快捷方式?


在Visual Studio中的例子

IDE提示。

enter image description here

VS的快捷方式会生成这样的方法。

    private static void MySomeMethod(int a, string b)
    {
        throw new NotImplementedException();
    }

对不起,我从 "VS "中复制了一些信息。回答 来解释我的问题,因为我现在的电脑上没有Visual Studio。

php netbeans
1个回答
1
投票

遗憾的是,在Apache NetBeans IDE中还没有生成方法存根的代码片段或这样的快捷方式。相反,它有很多优点是Visual Studio中没有的,反之亦然。

© www.soinside.com 2019 - 2024. All rights reserved.