Delete comments in java source code. How many kinds of comments in java?
- one line comments using slash star
- half line comments follows code using slash star
- multi-line comments using slash star
- multi-line comments start with half line comments using slash star
- one line comments using double slash
- half line comments after code using double slash
Notes: any slash and star in qutations marks can't be removed if there are in output line. such as : System.out.print("aaaaaaaaaaaaaaa//bbbbbb/**///");
modify test.