摘要:
java.util.Calendar 类是一个抽象类,可以通过调用 getInstance() 静态方法获取一个 Calendar 对象,此对象已由当前日期时间初始化,即默认代表当前时间,如 Calendar c = Calendar.getInstance(); 使用 Calendar 获取年、月 阅读全文
摘要:
关于eclipse的Debug Current Instruction Pointer 阅读全文
摘要:
Given a roman numeral, convert it to an integer. Input is guaranteed to be within the range from 1 to 3999. I = 1;V = 5;X = 10;L = 50;C = 100;D = 500; 阅读全文