- 浏览: 187662 次
- 性别:
- 来自: 自己输入城市...
最新评论
-
durong11:
或者直接在函数的中加入:if(head.data.equals ...
我的Java单链表练习 -
durong11:
一种解释是:如果是从头结点insert 直接使用addFrom ...
我的Java单链表练习 -
老肥猴_vi:
谢谢。但是貌似insert函数( public boolean ...
我的Java单链表练习 -
niepeng880208:
支持
List转换成String数组 -
haohao-xuexi02:
EventHelp
幻灯片效果
文章列表
● 我喜欢「式」:
constructor 建构式
declaration 宣告式
definition 定义式
destructor 解构式
expression 算式(运算式)
function 函式
pattern 范式、模式、样式
program 程式
signature 标记式(签名式/署名式)
● 我喜欢「件」:(这是 ...
- 2008-01-28 22:54
- 浏览 1825
- 评论(0)
package apq.Calculate;
import javax.swing.*;
import java.awt.event.*;
import java.awt.*;
public class Calculate extends JFrame
implements ActionListener{
private JTextField display=new JTextField();
private JButton[] buttons=new JButton[16];
private String[] keys={&qu ...
- 2008-01-26 00:03
- 浏览 944
- 评论(0)
程序结果:
Tom: 感谢你投票!
Tom 你不允许重复投票!
Bob: 感谢你投票!
Jack: 感谢你投票!
----------------------------------
当前投票数为: 3
参与投票的选民如下:
----------------------------------
Jack
Bob
Tom
----------------------------------
package apq.Vote;
import java.util.*;
public class Voter {
private static final int MAX_C ...
- 2008-01-25 23:30
- 浏览 1332
- 评论(2)
import java.io.*;
//---------------------------------
// 文件过滤器
class HTMLFilter implements FilenameFilter {
public boolean accept(File directory, String name) {
if (name.endsWith(".html")) return true;
if (name.endsWith(".htm")) return true;
if (name.endsWith( ...
- 2008-01-25 22:41
- 浏览 1949
- 评论(0)
long begin = System.currentTimeMillis();
。。。。。 // 你的代码
long end = System.currentTimeMillis();
System.out.println(end-begin); // 结果为毫秒,1秒=1000毫秒
完整的代码
/*
* @(#)Timing.java
*/
package ds.time;
/**
* An instance of the class acts like a stop watch for measuring the
* time required to ...
- 2008-01-24 14:30
- 浏览 1217
- 评论(0)
List<String> list = new ArrayList<String>();
list.add("a1");
list.add("a2");
String[] toBeStored = list.toArray(new String[list.size()]);
for(String s : toBeStored) {
System.out.println(s);
}
或
List<String> list = new ArrayList<String>();
list. ...
- 2008-01-22 16:14
- 浏览 16259
- 评论(2)
国外的:
1.http://www.mp3.com/
2.http://tech.yahoo.com/
3.http://cssvault.com/
4.http://www.msn.com/
国内的:
1.http://cn.yahoo.com/
2.http://www.pcpop.com/
3.http://cn.msn.com/
4.http://www.it168.com/
5.http://www.csdn.net/
- 2008-01-14 09:10
- 浏览 848
- 评论(0)
import java.io.*;
class CodeCounter {
private static long normalLines = 0; //普通行
private static long commentLines = 0; //注释行
private static long whiteLines = 0; //空白行
private static long totalLines = 0; //总行数
public CodeCounter(String s) {
File f = new File(s);
tree(f);
}
...
- 2008-01-12 07:45
- 浏览 956
- 评论(0)
1 --> 匹配IP地址
匹配条件:
1.任何一个1位或2位数字.
2.任何一个以1开头的3位数字.
3.任何一个以2开头、第2位数字在0~4之间的3位数字.
4.任何一个以25开头、第3位数字在0~5之间的3位数字.
p("192.168.0.10".matches("\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}"));
p("192.168.0.10".matches("(\\d{1,3}\\.){3}\\d{1,3}"));
p("192.168. ...
- 2008-01-10 22:16
- 浏览 915
- 评论(0)
由于Mingliu字体不是大陆的字体,所以我们在网页中设置网页编码时要选择范围较广的UTF-8。
例:
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<span style="font-size:11px; font-family:Mingliu";>我是汉字</span>
- 2007-12-19 04:47
- 浏览 919
- 评论(0)
一个一级方程式赛车的站点,质感把握非常到位
http://www.f1play.com/main/index.html
酷得没得说了,佩服
http://www.djvolcano.de/
颜色搭配相当经典,相当不错
http://www.nemstudio.com/en.php
:D越来越多3D的技术用在FLASH上了,COOL
http://www.extrememus ...
- 2007-12-19 04:24
- 浏览 943
- 评论(0)