清凉世界

喜欢喜欢我的...

  博客园 :: 首页 :: 联系 :: 订阅 订阅 :: 管理
  6 Posts :: 2 Stories :: 11 Comments :: 0 Trackbacks

公告

08 2007 档案

摘要: js文件Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->1//JScript文件2functionGetXmlRequest()3{4varxmlHttp;5try6{7xmlHttp=newXMLHttpRequest();8}9catch(e)10...阅读全文
posted @ 2007-08-27 17:35 清凉tea 阅读(117) | 评论 (0) 编辑

摘要: public class GenericList<T>{ private class Node { // T used in non-generic constructor public Node(T t) { next = null; data = t; } private Node next; public Node Next { get { return next; } set ...阅读全文
posted @ 2007-08-24 17:00 清凉tea 阅读(71) | 评论 (1) 编辑