stripjavacomments.test

来自「Use the links below to download a source」· TEST 代码 · 共 31 行

TEST
31
字号
/* * Copyright text * has to be removed *//** * JavaDoc text about the class. * has to be removed */ public class NormalLine {    private String withComment; // this comment should be removed    /* this comment     * should be     * removed     */    public void doNothing() {        // this comment should be removed        int i;        /* this comment           should be removed        */        int j;    }    private String url = "http://ant.apache.org/"; // very difficult!    private String url2 = "\"http://ant.apache.org/\""; // even worse}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?