| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 640 人关注过本帖
标题:calendar 方法
取消只看楼主 加入收藏
weizheng
Rank: 1
等 级:新手上路
威 望:2
帖 子:286
专家分:0
注 册:2005-4-21
收藏
 问题点数:0 回复次数:1 
calendar 方法

import java.util.*;

public class Repeat { public static void main(String[] args) { String sentence=" Testing the speed of your comp"; int count=1; Calendar start=Calendar.getInstance(); int startMinute=start.get(Calendar.MINUTE); int startSecond=start.get(Calendar.SECOND); start.roll(Calendar.MINUTE,true); int nextMinute=start.get(Calendar.MINUTE); int nextSecond=start.get(Calendar.SECOND); while(count<1000000){ System.out.println(sentence); GregorianCalendar now=new GregorianCalendar(); if(now.get(Calendar.MINUTE)>=nextMinute) if(now.get(Calendar.SECOND)>=nextSecond) break; count++; } System.out.println("\n I have wrote it"+count+"times"); } }

引入了util包,为什么还不能认出方法calendar()?

[此贴子已经被作者于2005-10-27 12:06:34编辑过]

搜索更多相关主题的帖子: calendar 
2005-10-27 11:23
weizheng
Rank: 1
等 级:新手上路
威 望:2
帖 子:286
专家分:0
注 册:2005-4-21
收藏
得分:0 
谢了

温和如玉,完美纯正。
2005-10-27 12:04
快速回复:calendar 方法
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.039615 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved