我正在尝试为Java创建一种“简写”语法,用较不详细的关键字替换详细关键字,这样我就可以用更少的击键来编写Java代码。有没有办法用这些关键字的缩写替换“public”和“static”等关键字,然后将其转换为“普通”Java代码?
//would it be possible to convert this to "normal" Java code?
pu cl ModifiedSyntaxExample{
pu st void main(){
System.out.println("Hello World!")
}
}
这相当于:
//would it be possible to convert this to "normal" Java code?
public class ModifiedSyntaxExample{
public static void main(){
System.out.println("Hello World!")
}
}
第一个版本不那么冗长(因此更容易打字),因为“public”和“class”被替换为缩写“pu”和“st”。
答案 0 :(得分:3)
如果您使用的是任何IDE,那么可能。例如,在eclipse中,你有一个code snippets
,你可以用这样的方式配置,你将使你的代码更简洁。我希望我能正确理解你的问题。
对于前 - sysout
,将为您打印System.out.println();
。