文章列表
原文:http://blog.iseexn.com/archives/376.html
import java.util.Timer;
import java.util.TimerTask;
import java.util.Date;
/**
* @author vincent
*/
public class TimerTest {
public static void main(String[] args) {
Timer t = new Timer();
//在5秒之后执行TimerTask的任 ...
import java.text.DecimalFormat;
DecimalFormat df = new DecimalFormat("######0.00");
double d1 = 3.23456
double d2 = 0.0;
double d3 = 2.0;
df.format(d1);
df.format(d2);
df.format(d3);
做个笔记。
decimal 小数、十进制的。