您好,欢迎光临本网站![请登录][注册会员]  

搜索资源列表

  1. iPhone Cool Projects pdf

  2. The iPhone and iPod touch have provided all software developers with a level playing field—developers working alone have the same access to consumers as multinational software publishers. Very cool indeed! To make your application stand out from the
  3. 所属分类:其它

    • 发布日期:2009-12-16
    • 文件大小:5242880
    • 提供者:sonjj
  1. 关于六级作文,自己总结的哦

  2. 自己总结的写六级作文的哦。 It doesn't seem ugly to me; on the contrary, I think it's rather beautiful. To start with,...Besides,...Finally.... To begin with,....What's more, ...Last but not least As for as I'am concerned,..... when it comes to talking about it.
  3. 所属分类:专业指导

    • 发布日期:2009-12-17
    • 文件大小:1024
    • 提供者:rapheler
  1. FreePBX.2.5.Powerful.Telephony.Solutions.Sep.2009

  2. FreePBX is an easy-to-use GUI that controls and manages Asterisk. It gives you pre-programmed functionality accessible through user-friendly web interfaces that allows you to have a fully functional PBX pretty much straight away with no programming.
  3. 所属分类:Web开发

    • 发布日期:2009-12-20
    • 文件大小:8388608
    • 提供者:james_tsai_cn
  1. Tsc的delphi的代码BarTender_TLB.pas

  2. var AppPath: string; LebelPath: string; O: TApplication_Bar; begin AppPath := ExtractFilePath(ParamStr(0)); LebelPath := AppPath + '\aa.btw'; O := TApplication_Bar.Create(nil); try with O.Formats.Open(LebelPath, True, '') do begin PrintOut(False, Fa
  3. 所属分类:Delphi

    • 发布日期:2009-12-22
    • 文件大小:334848
    • 提供者:leihentulong
  1. jsp探针 ver0.1

  2. jsp探针ceshi.jsp 0) { freeSpace = line; } } if (freeSpace == null || freeSpace.length() == 0) { return -1; } process.destroy(); freeSpace = freeSpace.trim().replaceAll("\\\\", "\\/"); String[] results = freeSpace.split(" "); for (int i = results.len
  3. 所属分类:Java

    • 发布日期:2009-12-25
    • 文件大小:40960
    • 提供者:qq492932866
  1. Agile Project Management with Scrum

  2. Foreword: Why Scrum WorksSuppose I’m traveling from Chicago to Boston by airplane. Before and during the flight, the pilot gets instructions from air traffic control. We take off on command and follow the prescribed route. Once we are in the air, co
  3. 所属分类:Web开发

    • 发布日期:2007-11-24
    • 文件大小:1048576
    • 提供者:rayonlei
  1. B/S权限管理系统的一些算法

  2. B/S权限管理系统的一些算法 JSP在页面间如何传递数组servlet的2种重定向方法在框架中指定页面刷新权限分配页面关于try-catch-finally递归查询传递页面对象的值(如text.value)对字符串的字符集转换列表框(多选)在页面间的传递树的深度算法
  3. 所属分类:其它

    • 发布日期:2007-11-27
    • 文件大小:30720
    • 提供者:blue00007
  1. 程序员面试之九阴真经

  2. 谈谈final, finally, finalize的区别: final:::修饰符(关键字)如果一个类被声明为final,意味着它不能再派生出新的子类,不能作为父类被继承。因此一个类不能既被声明为 abstract的,又被声明为final的。将变量或方法声明为final,可以保证它们在使用中不被改变。被声明为final的变量必须在声明时给定初值,而在以后的引用中只能读取,不可修改。被声明为final的方法也同样只能使用,不能重载 finally:::再异常处理时提供 finally 块来执行
  3. 所属分类:专业指导

    • 发布日期:2009-12-29
    • 文件大小:185344
    • 提供者:kinghuangfeihu
  1. C# 蜘蛛Spider 网页抓取器 Crawler

  2. C# 蜘蛛Spider 网页抓取器 void ParseUri(MyUri uri, ref MyWebRequest request) { string strStatus = ""; // check if connection is kept alive from previous connections or not if(request != null && request.response.KeepAlive) strStatus += "Connection live to: "
  3. 所属分类:Web开发

    • 发布日期:2009-12-30
    • 文件大小:57344
    • 提供者:Dobit
  1. A Survey on Cellular Automata

  2. A cellular automaton is a decentralized computing model providing an excellent platform for performing complex computation with the help of only local information. Researchers, scientists and practitioners from di erent elds have exploited the CA pa
  3. 所属分类:其它

    • 发布日期:2010-01-04
    • 文件大小:228352
    • 提供者:yangyz67
  1. C++ Templates

  2. C++ Templates begins with an insightful tutorial on basic concepts and language features. The remainder of the book serves as a comprehensive reference, focusing first on language details, then on a wide range of coding techniques, and finally on ad
  3. 所属分类:C++

    • 发布日期:2010-01-06
    • 文件大小:754688
    • 提供者:hubing0825
  1. FileOutputStream将乘法口诀表写入指定文件

  2. package com.hexiang.io; import java.io.FileNotFoundException; import java.io.FileOutputStream; import java.io.IOException; public class MultiplicationTable { public static void main(String args[]){ long st = System.currentTimeMillis(); String fn = "
  3. 所属分类:Java

    • 发布日期:2010-01-07
    • 文件大小:955
    • 提供者:hexiang221
  1. File_实用案例_实现文件拷贝_FileCopy.java

  2. /* * Copyright (c) 2000 David Flanagan. All rights reserved. * This code is from the book Java Examples in a Nutshell, 2nd Edition. * It is provided AS-IS, WITHOUT ANY WARRANTY either expressed or implied. * You may study, use, and modify it for any
  3. 所属分类:Java

    • 发布日期:2010-01-07
    • 文件大小:2048
    • 提供者:hexiang221
  1. java面试经典试题

  2. 第一,谈谈final, finally, finalize的区别。    final—修饰符(关键字)如果一个类被声明为final,意味着它不能再派生出新的子类,不能作为父类被继承。因此一个类不能既被声明为 abstract的,又被声明为final的。将变量或方法声明为final,可以保证它们在使用中不被改变。被声明为final的变量必须在声明时给定初值,而在以后的引用中只能读取,不可修改。被声明为final的方法也同样只能使用,不能重载。
  3. 所属分类:Java

    • 发布日期:2010-01-09
    • 文件大小:9216
    • 提供者:isammys
  1. JAVA面试基础试题

  2. 第一,谈谈final, finally, finalize的区别。Anonymous Inner Class(匿名内部类) 是否可以extends(继承)其它类,是否可以implements(实现)interface(接口)?
  3. 所属分类:Java

    • 发布日期:2010-01-09
    • 文件大小:66560
    • 提供者:xty88645
  1. 由浅入深学Java(CHM)

  2. 第一章 什么是JAVA? 1.1 什么是Java? 1.2 Java的历史渊源 1.3 Java语言的特色和优点 1.4 Java的运行环境和开发工具 1.5 JDK工具包的安装、设置 1.6 Java程序的编译和运行 第二章 从Hello World例程开始 2.1 一个简单而又完整的例程 2.2 编译和运行应用程序 2.3 Application和Applet的区别 第三章 基本语言元素 3.1 基本数据类型 3.2 运算符 3.3 变量常量和表达式 3.4 例程几则 第四章 流程控制语句
  3. 所属分类:Java

    • 发布日期:2010-01-10
    • 文件大小:499712
    • 提供者:likang206
  1. Perl Best Practices

  2. Many programmers code by instinct, relying on convenient habits or a "style" they picked up early on. They aren't conscious of all the choices they make, like how they format their source, the names they use for variables, or the kinds of loops they
  3. 所属分类:Perl

    • 发布日期:2010-01-12
    • 文件大小:7340032
    • 提供者:lasergene
  1. Beginning C From Novice to Professional,

  2. It’s important to realize a few things that are true for learning any programming language. First, there is quite a lot to learn, but this means you’ll gain a greater sense of satisfaction when you’ve mastered it. Second, it’s great fun, so you real
  3. 所属分类:C

    • 发布日期:2010-01-12
    • 文件大小:13631488
    • 提供者:lihfos
  1. ASPNET35开发大全第一章

  2. ASPNET35开发大全非常好 书名:ASP.NET 3.5 开发大全 署名:郭靖 页数:722 这是我见过的一本非常好的教程 第一篇 .NET基础 第1章 认识ASP.NET 3.5 1.1 什么是ASP.NET 1.1.1 .NET历史与展望 1.1.2 ASP.NET与ASP 1.1.3 ASP.NET开发工具 1.1.4 ASP.NET客户端 1.1.5 ASP.NET 3.5新增控件 1.1.6 ASP.NET 3.5 AJAX 1.2 .NET应用程序需框架 1.2.1 什么是.N
  3. 所属分类:C#

    • 发布日期:2010-01-12
    • 文件大小:1048576
    • 提供者:honggutan
  1. 模拟面试题及答案 Java

  2. 选择了一些经常问到的java面试题,及建议答案,希望对各位面试者有用。 描述final﹑finally和finalize的区别。 编程题:使用Javascr ipt和HTML编写网页实现如图一所示计算功能: 购买总价=购买价格×购买数量。
  3. 所属分类:Java

    • 发布日期:2010-01-14
    • 文件大小:304128
    • 提供者:salonzhou
« 1 2 ... 8 9 10 11 12 1314 15 16 17 18 ... 50 »