英文:
Is there a way to change the settings in IntelliJ and disable auto-generation of the Main class during creation of the new project?
问题
有没有办法在我在IntelliJ中创建新项目时禁用自动生成主类(包含main方法的类)?
英文:
Is there a way to disable auto-generation of the main class (class containing main method) when I create a new project in IntelliJ?
答案1
得分: 1
创建项目时,在左侧菜单中选择“空项目”。这将创建一个空的 Java 项目,不包含任何类。
英文:
When creating a project, in the left menu select "Empty Project". This will create an empty java project with no classes.
答案2
得分: 0
在IntelliJ中,您可以前往设置 <kbd>Ctrl</kbd> + <kbd>Alt</kbd> + <kbd>S</kbd>,然后在设置窗口中,您可以选择 Editor -> File and Code Templates。在那里,您可以根据您的需求编辑类代码模板:
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论