- 浏览: 187874 次
- 性别:
- 来自: 自己输入城市...
最新评论
-
durong11:
或者直接在函数的中加入:if(head.data.equals ...
我的Java单链表练习 -
durong11:
一种解释是:如果是从头结点insert 直接使用addFrom ...
我的Java单链表练习 -
老肥猴_vi:
谢谢。但是貌似insert函数( public boolean ...
我的Java单链表练习 -
niepeng880208:
支持
List转换成String数组 -
haohao-xuexi02:
EventHelp
幻灯片效果
文章列表
原文地址:http://www.blueidea.com/tech/web/2006/4324.asp
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>密码</title>
<style type="text/css">
body{
font-size:12px;
font-family: Arial, Helv ...
- 2008-06-21 12:48
- 浏览 843
- 评论(0)
转自:http://v1.djasp.net/static/zh/2055.stm
JavaScript 是世界上最被误解的语言。
很多人认为它缺乏信息隐藏的特性所以对象不能有私有实例变量和方法。但这是一个误解。JavaScript对象同样可以拥有私有变量。下面就讲解一下:
对象
JavaScript根本上都是关于的对象(Object)的。数组(Array)是对象,函数(Function)是对象,Object就不说了。那什么是对象?对象是名称-值的配对的集合。名称是字符串,值可以是字符串、数字、布尔值和对象(包括数组和函数)。对象常常实现为哈希表以快速存取值。
如果一个值 ...
- 2008-06-12 07:11
- 浏览 2792
- 评论(0)
//----------------------------------------------------------------------
// Map
function Map(){
this.key = [];
this.value = {};
}
Map.prototype.put = function(k, v){
if (this.value[k] == null)
this.key.push(k);
this.value[k] = v;
};
Map.prototype.get = functi ...
- 2008-05-30 02:10
- 浏览 941
- 评论(0)
//这里主要是说明 对于关联数组的遍历,首先定义一个数组:
var arr = new Array();
//随便创建关联数组的数据如下:
arr["name"] = "mary";
arr["age"] = "3";
arr["sex"] = "man";
//利用 for 循环遍历如下:
f ...
- 2008-05-28 16:21
- 浏览 999
- 评论(0)
DTree树不错,使用起来很方便
可以到http://destroydrop.com/javascripts/tree/default.html下载最新的版本
- 2008-05-27 11:55
- 浏览 704
- 评论(0)
图标
http://www.freeiconsdownload.com/
一个网页小图标网站
http://www.iconarchive.com/
素材中国
http://online.sccnn.com/html/cion/gificon/index-1.htm
- 2008-05-26 21:26
- 浏览 1341
- 评论(0)
1.函数
// ①-->JS的重载方法
function add(){
if (arguments.length == 1)
alert(arguments[0]);
else if (arguments.length == 2)
alert(arguments[0] + arguments[1]);
}
add(20); // 20
add(20, 30); // 50
// ②-->Function类
var add = new Function("a", "b" ...
- 2008-05-24 11:40
- 浏览 805
- 评论(0)
把以下内容存入记事本:
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\.txt]
@="txtfile"
"Content Type"="text/plain"
[HKEY_CLASSES_ROOT\.txt\ShellNew]
"NullFile"=""
[HKEY_CLASSES_ROOT\txtfile]
@="文本文档"
[HKEY_CLASSES_ROOT\tx ...
- 2008-05-22 06:04
- 浏览 1415
- 评论(0)
1.锚点链接
<body>
<a name="t">anthor</a>
<br />
<br />
....
<a href="#t">link</a>
</body>
2.分割线<hr>
<hr noshade="noshade" c color="blue" width="300" size="2" align="center" ...
- 2008-05-21 10:15
- 浏览 1341
- 评论(0)
<head>
<!-- BEGIN METADATA -->
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<!-- 三秒之后打开google -->
<meta http-equiv="refresh" content= "3; url=http://www.google.cn" />
<!-- keywords写给搜索引擎看的 --&g ...
- 2008-05-21 09:37
- 浏览 835
- 评论(0)
Tomcat下载地址:
http://tomcat.apache.org/
1.环境变量设置
classpath:D:\tomcat5.5\bin;D:\tomcat5.5\common\lib
JAVA_HOME:D:\software\jdk1.5
TOMCAT_HOME:D:\tomcat5.5
2.Tomcat 该默认端口
改写"D:\tomcat5.5\conf\server.xml"文件,如下:
<Connector port="80" maxHttpHeaderSize="8192"
...
- 2008-05-20 05:47
- 浏览 885
- 评论(0)
演示地址:http://www.yaohaixiao.com/code/alertbox/index.htm
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv=&q ...
- 2008-05-19 03:45
- 浏览 1683
- 评论(0)
package Heap;
import MyInterface.Comparator;
import MyInterface.Queue;
import java.util.NoSuchElementException;
import java.util.Arrays;
public class PriorityQueue<T> implements Queue<T> {
private T[] arr;
private int qSize;
private Comparator<T> comp;
public ...
- 2008-05-11 05:00
- 浏览 975
- 评论(0)
Comparator接口
package MyInterface;
public interface Comparator<T> {
int compare(T x, T y);
}
package Heap;
import MyInterface.Comparator;
public class Greater<T> implements Comparator<T> {
public int compare(T x, T y) {
return -((Comparable<T>)x).compareTo(y ...
- 2008-05-11 02:06
- 浏览 989
- 评论(0)
目前较为流行的Ajax框架一览
http://www.open-open.com/3_67.htm
Eclipse RAP
Eclipse RAP项目的目的是让开发人员能够利用Eclipse开发模型来构建Rich,Ajax-enabled Web应用程序。主要运用著名的Eclipse平台扩展点插件机制和一个包含SWT/JFace API的widge ...
- 2008-05-08 12:30
- 浏览 2152
- 评论(0)