2010年02月12 - I have been checking out Groovy a bit and I feel that moving a Java program to Groovy little by little -- grabbing a class and making it a Groovy class, then converting the method guts a bit at a time
2018年11月19 - 和 C 类似, Java 提供了丰富的快捷运算方式。这些快捷运算可使代码更清爽,更易录入,也更易读者辨读。两种很不错的快捷运算方式是递增和递减运算符(常称作“自动递增”和“自动递减”运算符)。其中,递减运算符是“ --”,意为“减少一个单位”;递增运算符是“ ++”,意为“增加一个单位”。举个例子来说,假设 A 是一个 int(整数)值,则表达式++A 就等价于( A = A + 1)。递增和递减