自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(4)
  • 资源 (28)
  • 收藏
  • 关注

原创 离职表

    吾本布衣,师于民航,苟全性命于当世,不求闻达于富贵。业卒至此勤至今,已三载余,几度春秋,逝一千两百五十三日夜。先,吾本恢弘志士,欲图抱负,一则社王于诸侯,二则己衣食殷足,两全之策,兴哉?然,吾不肖,习言,知其肤,习语,知其表。奈允,遂去!历三载余,其间四战,辛苦历练,犹在目,然弱冠,且历少,不足道矣。初,拜为PG,春秋劳作,不舍昼夜,未敢有怠慢之心。乃得同科数人,兴味相

2010-01-07 21:10:00 456

原创 java 文件读取_InputStreamReader

package test;import java.io.File;import java.io.FileInputStream;import java.io.FileOutputStream;import java.io.IOException;import java.io.InputStreamReader;import java.io.OutputStreamWriter;public

2009-12-30 17:24:00 1232

原创 java 文件读写_FileReader

package test;import java.io.File;import java.io.FileReader;import java.io.FileWriter;import java.io.IOException;public class Test { public static void main(String arg[]) {  String fileName = "E:

2009-12-29 16:47:00 1694

原创 java 文件读写_FileInputStream_File

package test;import java.io.File;import java.io.FileInputStream;import java.io.FileOutputStream;import java.io.IOException;public class Test { public static void main(String arg[]) {  String fil

2009-12-29 16:30:00 1022

新版Android开发教程+笔记六--应用3、4 布局

新版Android开发教程+笔记六--应用3、4 布局

2013-09-02

新版Android开发教程+笔记九--基础UI编程3

新版Android开发教程+笔记九--基础UI编程3

2013-09-02

新版Android开发教程&笔记四--Dalvik ADB

新版Android开发教程&笔记四--Dalvik ADB

2013-09-02

新版Android开发教程&笔记三--环境搭建与解析.pdf

新版Android开发教程&笔记三--环境搭建与解析.pdf

2013-09-02

新版Android开发教程&笔记--基础入门二

新版Android开发教程&笔记--基础入门二

2013-09-02

新版Android开发教程&笔记--基础入门一

新版Android开发教程&笔记--基础入门一

2013-09-02

makefile经典教程

第一部分、概述...............................................................................................................................6 第二部分、关于程序的编译和链接...............................................................................................6 第三部分、Makefile 介绍............................................................................................................7 一、Makefile的规则..............................................................................................................7 二、一个示例...........................................................................................................................8 三、make是如何工作的........................................................................................................9 四、makefile中使用变量....................................................................................................10 五、让make自动推导..........................................................................................................11 六、另类风格的makefile....................................................................................................12 七、清空目标文件的规则.....................................................................................................13 第四部分、Makefile 总述..........................................................................................................13 一、Makefile里有什么?....................................................................................................13 1、显式规则。..............................................................................................................14 2、隐晦规则。..............................................................................................................14 3、变量的定义。..........................................................................................................14 4、文件指示。..............................................................................................................14 5、注释。......................................................................................................................14 二、Makefile的文件名........................................................................................................15 三、引用其它的Makefile ....................................................................................................15 四、环境变量 MAKEFILES................................................................................................16 五、make的工作方式..........................................................................................................16 第五部分、书写规则.....................................................................................................................17 一、规则举例.........................................................................................................................17 二、规则的语法.....................................................................................................................17 三、在规则中使用通配符.....................................................................................................18 四、文件搜寻.........................................................................................................................19 五、伪目标.............................................................................................................................20 六、多目标.............................................................................................................................22 七、静态模式.........................................................................................................................22 八、自动生成依赖性.............................................................................................................24 第六部分 书写命令.......................................................................................................................25 一、显示命令.........................................................................................................................26 二、命令执行.........................................................................................................................26 三、命令出错.........................................................................................................................27 四、嵌套执行make..............................................................................................................28 五、定义命令包.....................................................................................................................30 第七部分 使用变量.......................................................................................................................30 一、变量的基础.....................................................................................................................31 二、变量中的变量.................................................................................................................32 三、变量高级用法.................................................................................................................34 四、追加变量值.....................................................................................................................37 五、override 指示符..........................................................................................................37 六、多行变量.........................................................................................................................38 第2页共78页 2005年10 月14日整理:祝冬华 跟我一起写Makefile 作者:陈皓 七、环境变量.........................................................................................................................38 八、目标变量.........................................................................................................................39 九、模式变量.........................................................................................................................40 第八部分 使用条件判断...............................................................................................................40 一、示例.................................................................................................................................40 二、语法.................................................................................................................................42 第九部分 使用函数.......................................................................................................................43 一、函数的调用语法.............................................................................................................44 二、字符串处理函数.............................................................................................................44 1、subst .......................................................................................................................44 2、patsubst.................................................................................................................45 3、strip.........................................................................................................................45 4、findstring...............................................................................................................46 5、filter.........................................................................................................................46 6、filter-out.................................................................................................................46 7、sort ..........................................................................................................................47 8、word ........................................................................................................................47 9、wordlist ..................................................................................................................47 10、words....................................................................................................................47 11、firstword..............................................................................................................48 12、字符串函数实例....................................................................................................48 三、文件名操作函数.............................................................................................................48 1、dir.............................................................................................................................48 2、notdir ......................................................................................................................48 3、suffix .......................................................................................................................49 4、basename..............................................................................................................49 5、addsuffix................................................................................................................49 6、addprefix ...............................................................................................................49 7、join...........................................................................................................................50 四、foreach 函数................................................................................................................50 五、if 函数............................................................................................................................50 六、call函数..........................................................................................................................51 七、origin函数.....................................................................................................................51 “undefined” .................................................................................................................52 “default” .......................................................................................................................52 “file”...............................................................................................................................52 “command line”.........................................................................................................52 “override” ....................................................................................................................52 “automatic” .................................................................................................................52 八、shell函数.......................................................................................................................53 九、控制make的函数..........................................................................................................53 1、error ........................................................................................................................53 2、warning..................................................................................................................54 第十部分 make 的运行.

2013-04-09

圈圈教你学USB学习资料大全

圈圈教你学USB学习资料大全,主要实例代码,C++的 从其它的地方一载,但并没有验证其代码的正性。

2013-03-12

Linux_USB_gadget

Linux_USB_gadget linux USB的客户端开发。 是在其它地方找的,但也需要积分。简单一分

2013-03-12

Oracle企业DBA性能优化.pdf

这个文件是从其他人的,下载的.需要10个积分. 太不利于大家学习了,所以我再次发布一次,只要一个积分. Oracle企业DBA性能优化.pdf 书的内容主要是ORACLE优化的。

2010-09-01

C#语言参考.pdf

Table of Contents C# LANGUAGE REFERENCE 2.4.1 输入......................................................................................................................................................45 2.4.2 输入字符..............................................................................................................................................45 2.4.3 行结束符..............................................................................................................................................45 2.4.4 注释......................................................................................................................................................45 2.4.5 空白......................................................................................................................................................46 2.4.6 标记......................................................................................................................................................47 2.5 句法分析.....................................................................................................................................................47 2.5.1 标识符..................................................................................................................................................47 2.5.2 关键字..................................................................................................................................................48 2.5.3 数据符号..............................................................................................................................................48 2.5.4 操作符和标点......................................................................................................................................53 2.5.5 Unicode 字符转意字符序列................................................................................................................53 3. 基本概念...........................................................................................................................................................55 3.1 声明.............................................................................................................................................................55 3.2 成员.............................................................................................................................................................57 3.2.1 名称空间成员......................................................................................................................................57 3.2.2 结构成员..............................................................................................................................................57 3.2.3 枚举成员..............................................................................................................................................57 3.2.4 类 Table of Contents 4.2.2 对象类型..............................................................................................................................................75 4.2.3 字符串类型..........................................................................................................................................75 4.2.4 接口类型..............................................................................................................................................76 4.2.5 数组类型..............................................................................................................................................76 4.2.6 代表类型..............................................................................................................................................76 4.3 包装和解包.................................................................................................................................................76 4.3.1 包装转换..............................................................................................................................................76 4.3.2 解包转换..............................................................................................................................................77 5. 变量...................................................................................................................................................................79 5.1 变量类型.....................................................................................................................................................79 5.1.1 静态变量..............................................................................................................................................79 5.1.2 实例变量..............................................................................................................................................79 5.1.3 数组元素..............................................................................................................................................80 5.1.4 数值参数..............................................................................................................................................80 5.1.5 引用参数..............................................................................................................................................80 5.1.6 输出参数..............................................................................................................................................80 5.1.7 局部变量..............................................................................................................................................81 5.2 默认值.........................................................................................................................................................81 5.3 明确赋值.....................................................................................................................................................81 5.3.1 初始赋值变量......................................................................................................................................83 5.3.2 非初始赋值变量..................................................................................................................................84 5.4 变量引用.....................................................................................................................................................84 6. 转换...................................................................................................................................................................85 6.1 隐式转换.....................................................................................................................................................85 6.1.1 同一性转换..........................................................................................................................................85 6.1.2 隐式数值转换......................................................................................................................................85 6.1.3 隐式枚举转换......................................................................................................................................86 6.1.4 隐式引用转换......................................................................................................................................86 6.1.5 转换......................................................................................................................................................86 6.1.6 隐式常数表达式转换..........................................................................................................................86 6.1.7 用户自定义隐式转换..........................................................................................................................87 6.2 显式转换.....................................................................................................................................................87 6.2.1 显式数值转换......................................................................................................................................87 6.2.2 显式枚举类型转换..............................................................................................................................88 6.2.3 显式引用类型转换..............................................................................................................................88 6.2.4 解包转换..............................................................................................................................................89 6.2.5 用户自定义显式转换..........................................................................................................................89 6.3 标准转换.....................................................................................................................................................89 6.3.1 标准隐式转换......................................................................................................................................89 6.3.2 标准显式转换......................................................................................................................................90 6.4 用户定义转换.............................................................................................................................................90 6.4.1 允许的用户自定义转换.......................................................................................................................90 6.4.2 用 C# LANGUAGE REFERENCE 6.4.4 用户自定义显式类型转换...................................................................................................................91 7. 表达式...............................................................................................................................................................93 7.1 表达式分类.................................................................................................................................................93 7.1.1 表达式的数值......................................................................................................................................94 7.2 操作符.........................................................................................................................................................94 7.2.1 操作符优先级和结合顺序...................................................................................................................94 7.2.2 操作符重载..........................................................................................................................................96 7.2.3 一元操作符重载分析..........................................................................................................................97 7.2.4 二元操作符重载分析..........................................................................................................................97 7.2.5 候选用户定义操作符..........................................................................................................................98 7.2.6 数字升级..............................................................................................................................................98 7.3 成员查询.....................................................................................................................................................99 7.3.1 基类型................................................................................................................................................100 7.4 函数成员...................................................................................................................................................100 7.4.1 参数列表............................................................................................................................................102 7.4.2 重载分析............................................................................................................................................103 7.4.3 功能成员调用....................................................................................................................................105 7.4.4 虚拟函数成员查找............................................................................................................................106 Table of Contents 7.7.2 除法运算符........................................................................................................................................126 7.7.3 余数运算符........................................................................................................................................127 7.7.4 加法运算符........................................................................................................................................127 7.7.5 减法运算符........................................................................................................................................129 7.8 移位运算符...............................................................................................................................................130 7.9 关系运算符...............................................................................................................................................131 7.9.1 整数比较运算符................................................................................................................................132 7.9.2 浮点比较运算符................................................................................................................................132 7.9.3 小数比较运算符................................................................................................................................133 7.9.4 布尔相等运算符................................................................................................................................133 7.9.5 枚举比较运算符................................................................................................................................133 7.9.6 引用类型相等运算符........................................................................................................................133 7.9.7 字符串相等运算符............................................................................................................................135 C# LANGUAGE REFERENCE 8.8.1 while语句...........................................................................................................................................155 8.8.2 do语句................................................................................................................................................155 8.8.3 for语句...............................................................................................................................................155 8.8.4 foreach语句........................................................................................................................................157 8.9 跳转语句...................................................................................................................................................158 8.9.1 break语句...........................................................................................................................................158 8.9.2 continue语句......................................................................................................................................159 Table of Contents 10.5.5 抽象方法..........................................................................................................................................193 10.5.6 外部方法..........................................................................................................................................194 10.5.7 方法主体..........................................................................................................................................195 10.5.8 方法重载..........................................................................................................................................195 10.6 属性.........................................................................................................................................................195 10.6.1 静态属性..........................................................................................................................................196 10.6.2 虚拟属性..........................................................................................................................................196 10.6.3 覆盖属性..........................................................................................................................................197 10.6.4 抽象属性..........................................................................................................................................198 10.6.5 访问符..............................................................................................................................................198 10.7 事件.........................................................................................................................................................203 10.8 索引.........................................................................................................................................................206 10.8.1 索引重载..........................................................................................................................................209 10.8.2 虚拟索引..........................................................................................................................................209 10.8.3 覆盖索引..........................................................................................................................................209 10.8.4 抽象索引..........................................................................................................................................210 10.9 操作符.....................................................................................................................................................210 10.9.1 一元操作符......................................................................................................................................211 10.9.2 二元操作符......................................................................................................................................211 10.9.3 转换操作符......................................................................................................................................212 10.10 实例构造函数.......................................................................................................................................213 10.10.1 构造函数初始化函数.....................................................................................................................214 10.10.2 实例变量初始化函数.....................................................................................................................214 10. C# LANGUAGE REFERENCE 12.4 数组成员.................................................................................................................................................226 12.5 数组协方差.............................................................................................................................................226 12.6 数组初始化函数.....................................................................................................................................227 13. 接口...............................................................................................................................................................229 13.1 接口声明.................................................................................................................................................229 13.1.1 接口修饰符......................................................................................................................................229 13.1.2 基本接口..........................................................................................................................................229 13. Table of Contents 17.3 属性实例.................................................................................................................................................255 17.3.1 一个属性的编译...........................

2010-04-27

C语言函数一览 C语言函数

C语言函数一览 C语言函数一览 C语言函数

2010-04-27

ASP.NET Bible

ISBN: 0764548166 by mridula Parihar and et al. Hungry Minds (C) 2002 (855 pages) Learn the ins and outs of ASP.NET using Visual Basic and C# with this comprehesive reference tool. ting Started with ASP.NET Chapter 3 - Building Forms with Web Controls Chapter 4 - Using Rich Web Controls Chapter 5 - Creating and Using Custom Controls Chapter 6 - Validating User Input Chapter 7 - Debugging ASP.NET Pages Part II - ASP.NET Database Programming Chapter 8 - Introducing ADO.NET Chapter 9 - Understanding Data Binding Chapter 10 - Working with Data Grids Chapter 11 - Using Templates Chapter 12 - Using SQL Server with ASP.NET Chapter 13 - Advanced Data Binding and XML Part III - Advanced ASP.NET Chapter 14 - ASP.NET Application Configuration Chapter 15 - Developing Business Objects Chapter 16 - Building HTTP Handlers Chapter 17 - Understanding Caching Chapter 18 - Building Wireless Applications with ASP.NET Mobile Controls Chapter 19 - ASP.NET Security Chapter 20 - Localizing ASP.NET Applications Chapter 21 - Deploying ASP.NET Applications Part IV - Building Web Services Chapter 22 - Introduction to Web Services Chapter 23 - Web Services Infrastructure Chapter 24 - Understanding SOAP Chapter 25 - Building a Web Service Chapter 26 - Deploying and Publishing Web Services Chapter 27 - Finding Web Services Chapter 28 - Consuming Web Services Part V - Building ASP.NET Applications Chapter 29 - ASP.NET Blackjack Chapter 30 - Chatty Discussion Forum Appendix A - Visual Basic Syntax Appendix B - Visual Basic Functions and Features Appendix C - Visual Basic Object-Oriented Programming Appendix D - C# Syntax Appendix E - C# Classes Appendix F - C# Components Index List of Figures List of Tables List of Sidebars

2010-04-27

Microsoft ASP .NET 深入编程

Microsoft ASP .NET 深入编程 北京希望电子出版社 总策划 陈英学 编写 北京希望电子出版社 目 录 第1章 概述 第2章 环境与Visual Studio.NET 第3章 ASP.NET的语法基础 第4章 Web页面 第5章 深入讲解ASP+验证 第6章 服务器端控件 第7章 自定义与HTML控件 第8章 .NET的数据库编程技术 第9章 应用程序 第10章 Web Service 第11章 性能优化 第12章 高级应用 第13章 ASP.NET实战篇 第14章 C#的Windows编程 第15章 附录

2010-04-27

Debugging ASP.NET

Debugging ASP.NET Jonathan Goodyear Brian Peek Brad Fox Publisher: Financial Times Prentice Hall First Edition October 19, 2001 ISBN: 0-7357-1141-0, 376 pages New Riders - Debugging ASP.NET made by dotneter@teamfly New Riders - Debugging ASP.NET made by dotneter@teamfly Structured Exception Handling Global Exception Handling Summary II: ASP.NET Debugging Tools 5. Conditional Compiling What Is Conditional Compiling? Other Preprocessor Directives Summary 6. Tracing Configuration Trace Output Setting Trace Messages Trace Viewer Tracing via Components Tips for Using Trace Information Summary 7. Visual Studio .NET Debugging Environment Introduction to Features Attaching to Processes Setting It All Up Inline Debugging of ASP.NET Pages Inline Debugging of Components Remote Debugging Summary 8. Leveraging the Windows 2000 Event Log The Windows 2000 Event Log Defined Web Applications Can Use the Event Log The System.Diagnostics Event Log Interface Custom Event Logs Handling Different Types Of Events Access Event Log Data via the Web Summary III: Debugging the New ASP.NET Features 9. Debugging Server-Side Controls Creating the Project Debugging the Control Summary New Riders - Debugging ASP.NET made by dotneter@teamfly 10. Debugging Data-Bound Controls Data-Bound Controls Debugging Templates Namespace Issues XML Binding Summary 11. Debugging User Controls User Control Basics Adding Properties and Methods Dynamic User Controls Summary 12. Caching Issues and Debugging Output Caching The Caching API Summary IV: Debugging Related Technologies 13. Debugging Web Services Web Services Stumbling Blocks Error Messages Problems Working with XMLSerializer Working with Errors in SOAP Error Returning Certain Types of Data Working with Streams Tools Basic Web Services Debugging Problems Deploying Your Web Service? Summary 14. Debugging .NET Components and HttpHandlers The Component Interfaces HttpHandlers State-Management Issues .NET Components Versus Registered COM Components Summary 15. COM+ Issues Role-Based Security Component Services Microsoft Management Console

2010-04-27

Sams - ASP.NET- Tips, Tutorials, and Code - DRAFT.pdf

Sams - ASP.NET- Tips, Tutorials, and Code - DRAFT.pdf IN THIS CHAPTER * Using Collections 4 * Working with the File System 29 * Using Regular Expressions 45 * Generating Images Dynamically 51 * Sending E-mail from an ASP.NET Page 60 * Network Access Via an ASP.NET Page 64 * Uploading Files from the Browser to the Web Server Via an ASP.NET Page 71 * Using ProcessInfo: Retrieving Information About a Process 79 * Accessing the Windows Event Log 84 * Working with Server Performance Counters 93 * Encrypting and Decrypting Information 101

2010-04-27

Inside ASP.NET

Scott Worley Publisher: New Riders Publishing First Edition November 15, 2001 ISBN: 0-7357-1135-6, 730 pages Inside ASP.NET Here’s what reviewers are saying about Inside ASP.NET: About the Author Contributing Authors About the Technical Reviewers Acknowledgments Tell Us What You Think! Introduction Who Is This Book For? Contents of the Book I: Introducing ASP.NET 1. An Overview of ASP.NET ASP.NET The .NET Base Class Libraries ASP.NET Web Application Configuration Session and State Management Cache Management ASP.NET Web Application Development Layers Web Forms XML Web Services COM/COM+ Interoperability and Component Services ADO.NET Migration from Classic ASP to ASP.NET Globalization and Localization Enhanced Security 2. Developing Applications with ASP.NET Application Settings Files The Page Syntax Commonly Used Objects and Classes in ASP.NET Tracing ASP.NET Applications ASP.NET Migration Issues Summary 3. Configuring ASP.NET Applications Deploying the web.config Configuration File Using the <appSettings> Configuration Section Analyzing the system.web Configuration Sections Summary II: Core ASP.NET 4. Web Form-Based Development Introduction to Web Forms Web Form Architecture Separating Code from the User Interface Server Controls Validation Controls Summary 5. State Management in ASP.NET What Is State Management? Using ASP.NET Application State Management Summary III: ASP.NET and Data Access 6. Using ADO.NET in ASP.NET Applications Data Access from a Web-Based Perspective ADO and ADO.NET Working with the Main ADO.NET Objects Building Data-Oriented Web Forms Transaction-Enabled ASP.NET Applications Summary 7. Using XML in ASP.NET Applications XML Document Structure How XML Is Used in ASP.NET Other XML Technologies Using XML in Your Application Real-World Examples Summary IV: Advanced Technologies 8. XML Web Service Development in ASP.NET Introduction to XML Web Services Using the SOAP Toolkit with XML Web Services XML Web Service Discovery—Advertising Your Service Using an XML Web Service in ASP.NET Pages Summary 9. Securing ASP.NET Applications Overview of ASP.NET Security Features Applying Security in ASP.NET Applications Inside ASP.NET Security Other Security Considerations Summary 10. Using Component Services with ASP.NET What Are Component Services? Applying Component Services in an ASP.NET Application The business Object Using the business Object Serviced Components Summary 11. Using Messaging Services with ASP.NET Introduction to Messaging Systems Managing MSMQ Message Queues with Windows 2000 Architecture of the .NET Messaging Services Accomplishing Tasks Using MSMQ and .NET Summary 12. Using Directory Services with ASP.NET Introducing Directory Services How Does Active Directory Work? The Benefits of Active Directory Active Directory Technology Summary Summary 13. Localizing and Globalizing ASP.NET Applications What Is Localization? Localizing an ASP.NET Web Application Summary V: Advanced Web Forms 14. Cache Control in ASP.NET ASP.NET Cache Management Page Output Caching Fragment Caching (Partial Page Caching) Request Caching Summary 15. Creating User and Custom Controls for ASP.NET User Controls Introduction to Custom Controls Summary 16. Mobile Device Development with ASP.NET Wireless Application Protocol (WAP) Wireless Markup Language (WML) Enter ASP.NET Summary VI: Putting It All Together 17. Putting It All Together What Is ProjectPal? Installing the ProjectPal Application A Brief Application Walkthrough Application Architecture ProjectPal Service Layers ProjectPal Client Interfaces The ProjectPal Database The ProjectPal Components Inside the ProjectPal Code Summary VII: Appendixes A. An Overview of .NET Multiple Development Platforms Multiple Development Languages .NET Base Class Libraries Common Language Runtime (CLR) Common Type System (CTS) .NET Server Products B. ASP.NET Common Object Reference HttpContext Object (Context Intrinsic Control) The HttpApplication Class The HttpApplicationState Class (Application Intrinsic Object) The HttpSessionState Class ( Session Intrinsic Object) The HttpRequest Class (Request Intrinsic Object) The HttpResponse Class (Response Intrinsic Object) The Server Class ( HttpServerUtility ) SMTPMail API C. ADO Common Object Reference DataSet Object DataTable Object DataColumn Object DataRow Class DataRelation Object DataView Object DataRowView Class OLEDBDATA Objects SQLData … Objects D. HTML Server Control Reference HtmlForm Object— < form> Element HtmlInputText Object— < input> Element HtmlInputHidden Object— < input type=“hidden”> Element HtmlInputCheckbox Object— < input type=”checkbox”> Element HtmlInputRadioButton Object— < input type=“radiobutton”> Element HtmlInputFile Object— < input type=“file”> Element HtmlTextArea Object— < textarea> Element HtmlButton Object— < button> Element HtmlInputButton Object— < input type=“button”> Element HtmlAnchor Object— < a> Element HtmlImage Object— < img> Element HtmlInputImage Object— < input type=“image”> Element HtmlSelect Object— < select> and <option> Elements HtmlTable Object— < table> Element HtmlTableRow Object— < tr> Element HtmlTableCell Object— < td> Element E. ASP Server Control Reference Common Properties of the Webcontrol Class The Label Control The Image Control The TextBox Control The DropDownList Control The ListBox Control The CheckBox Control The CheckBoxList Control The RadioButton Control The RadioButtonList Control The Button Control The LinkButton Control The ImageButton Control The HyperLink Control The Table Control The TableCell Control The TableRow Control The Panel Control The Repeater Control The DataList Control The DataGrid Control The AdRotator Control The Calendar Control F. Microsoft Mobile Internet Toolkit Control Groups Form and Layout Controls Presentation Controls Navigation Controls Data Entry Controls Validation Controls G. .NET Resource List ASP.NET Web Hosting Sites ASP.NET Web Sites C# Web Sites Visual Basic .NET Web Sites .NET Web Sites XML Web Services Microsoft .NET Websites Microsoft .NET Newsgroups .NET Mailing Lists Magazines

2010-04-27

精通spring (Mastering spring)_part2

文件比较大,分为两次上传:在我的相关资源里找。 jtSpring_Sun+ONE[1].part1.rar 地址:http://dlwt.csdn.net/fd.php?i=331422817394951&s=dce491791606e59657986f6537e8d535 jtSpring_Sun+ONE[1].part2.rar 中文书名:《精通spring》 英文书名:Mastering spring 作者:罗时飞 电子工业出版社

2010-04-25

Windows+脚本宿主+2.0+版教程.rar

WSH 版本信息 下表列出了 Microsoft 宿主应用程序实现的 Windows 脚本宿主版本。 <?job ?> 元素 x <?XML ?> 元素 x AddPrinterConnection 方法 x AddWindowsPrinterConnection 方法 x AppActivate 方法 x Application 属性 x Arguments 属性 x AtEndOfLine 属性 x AtEndOfStream 属性 x Close 方法 x Column 属性 x ComputerName 属性 x ConnectObject 方法 x Count 属性 x CreateObject 方法 x CreateShortcut 方法 x Description 属性 x DisconnectObject 方法 x Echo 方法 x EnumNetworkDrives 方法 x EnumPrinterConnections 方法 x Environment 属性 x ExpandEnvironmentStrings 方法 x FullName 属性 x GetObject 方法 x getResource 方法 x HotKey 属性 x IconLocation 属性 x Item 属性 x <job> 元素 x Length 属性 x Line 属性 x LogEvent 方法 x MapNetworkDrive 方法 x Name 属性 x <object> 元素 x <package> 元素 x Path 属性 x Popup 方法 x Quit 方法 x Read 方法 x ReadAll 方法 x ReadLine 方法 x <reference> 元素 x RegDelete 方法 x RegRead 方法 x RegWrite 方法 x Remove 方法 x RemoveNetworkDrive 方法 x RemovePrinterConnection 方法 x <resource> 元素 x Run 方法 x Save 方法 x <script> 元素 x ScriptFullName 属性 x ScriptName 属性 x SendKeys 方法 x SetDefaultPrinter 方法 x Skip 方法 x SkipLine 方法 x Sleep 方法 x SpecialFolders 属性 x StdErr 属性 x StdIn 属性 x StdOut 属性 x TargetPath 属性 x UserDomain 属性 x UserName 属性 x Version 属性 x WindowStyle 属性 x WorkingDirectory 属性 x Write 方法 x WriteBlankLines 方法 x WriteLine 方法 x WScript 对象 x WshArguments 对象 x WshEnvironment 对象 x WshNetwork 对象 x WshShell 对象 x WshShortcut 对象 x WshSpecialFolders 对象 x WshUrlShortcut 对象

2010-04-16

windows 批处理 实例 示例 bat 经典

文件夹 PATH 列表 卷序列号码为 0006EEA4 609C:F719 F:. └─批处理大全 ├─批处理资料 ├─收集的常用批处理 bat 程序 │ ├─其它类 │ ├─系统类 │ └─网络类 └─经典代码 ├─其他 ├─大型&综合性脚本 │ ├─Tel │ ├─XP安全设置补丁批处理 │ ├─公交线路查询 │ ├─文件备份器 │ ├─文件归类整理器 │ ├─英汉互译器 │ └─身份证信息查询 ├─字符串提取&替换等操作 ├─数值计算 ├─文件创建&改名等操作 ├─格式转换 ├─系统优化 │ ├─C盘个人资料转移器 │ │ ├─Desktop │ │ ├─Favorites │ │ ├─My Documents │ │ ├─OE │ │ └─Temp │ ├─XP安全设置补丁批处理 │ ├─XP自动优化批处理文件3.0 │ ├─全盘禁止运行指定程序 │ ├─关闭无用的服务 │ └─快速清理垃圾文件安装修改版 ├─系统信息查询&修改 └─获取路径

2010-04-16

thinking in C++

本书作者根据自己学习C++的亲身体会及多年教学经验,用简单的例子和简练的叙述讲解C++编程,别具特色。 全书共分十八章,内容涉及对象的演化、数据抽象、隐藏实现、初始化与清除、函数重载与缺省参数、输入输出流介绍、常量、内联函数、命名控制、引用和拷贝构造函数、运算符重载、动态对象创建、继承和组合、多态和虚函数、模板和包容器类、多重继承、异常处理和运行时类型识别。 本书作为正式教材和自学用书均非常优秀,作为程序设计者的参考用书亦极为合适。 目 录 译者序 前言 第1章 对象的演化 1 1.1 基本概念 1 1.1.1 对象:特性+行为 1 1.1.2 继承:类型关系 1 1.1.3 多态性 2 1.1.4 操作概念:OOP程序像什么 3 1.2 为什么C++会成功 3 1.2.1 较好的C 3 1.2.2 采用渐进的学习方式 4 1.2.3 运行效率 4 1.2.4 系统更容易表达和理解 4 1.2.5 “库”使你事半功倍 4 1.2.6 错误处理 5 1.2.7 大程序设计 5 1.3 方法学介绍 5 1.3.1 复杂性 5 1.3.2 内部原则 6 1.3.3 外部原则 7 1.3.4 对象设计的五个阶段 9 1.3.5 方法承诺什么 10 1.3.6 方法应当提供什么 10 1.4 起草:最小的方法 12 1.4.1 前提 13 1.4.2 高概念 14 1.4.3 论述(treatment) 14 1.4.4 结构化 14 1.4.5 开发 16 1.4.6 重写 17 1.4.7 逻辑 17 1.5 其他方法 17 1.5.1 Booch 18 1.5.2 责任驱动的设计(RDD) 19 1.5.3 对象建模技术(OMT) 19 1.6 为向OOP转变而采取的策略 19 1.6.1 逐步进入OOP 19 1.6.2 管理障碍 20 1.7 小结 21 第2章 数据抽象 22 2.1 声明与定义 22 2.2 一个袖珍C库 23 2.3 放在一起:项目创建工具 29 2.4 什么是非正常 29 2.5 基本对象 30 2.6 什么是对象 34 2.7 抽象数据类型 35 2.8 对象细节 35 2.9 头文件形式 36 2.10 嵌套结构 37 2.11 小结 41 2.12 练习 41 第3章 隐藏实现 42 3.1 设置限制 42 3.2 C++的存取控制 42 3.3 友元 44 3.3.1 嵌套友元 45 3.3.2 它是纯的吗 48 3.4 对象布局 48 3.5 类 48 3.5.1 用存取控制来修改stash 50 3.5.2 用存取控制来修改stack 51 3.6 句柄类(handle classes) 51 3.6.1 可见的实现部分 51 3.6.2 减少重复编译 52 3.7 小结 54 3.8 练习 54 第4章 初始化与清除 55 4.1 用构造函数确保初始化 55 4.2 用析构函数确保清除 56 4.3 清除定义块 58 4.3.1 for循环 59 4.3.2 空间分配 60 4.4 含有构造函数和析构函数的stash 61 4.5 含有构造函数和析构函数的stack 63 4.6 集合初始化 65 4.7 缺省构造函数 67 4.8 小结 68 4.9 练习 68 第5章 函数重载与缺省参数 69 5.1 范围分解 69 5.1.1 用返回值重载 70 5.1.2 安全类型连接 70 5.2 重载的例子 71 5.3 缺省参数 74 5.4 小结 81 5.5 练习 82 第6章 输入输出流介绍 83 6.1 为什么要用输入输出流 83 6.2 解决输入输出流问题 86 6.2.1 预先了解操作符重载 86 6.2.2 插入符与提取符 87 6.2.3 通常用法 88 6.2.4 面向行的输入 90 6.3 文件输入输出流 91 6.4 输入输出流缓冲 93 6.5 在输入输出流中查找 94 6.6 strstreams 96 6.6.1 为用户分配的存储 96 6.6.2 自动存储分配 98 6.7 输出流格式化 100 6.7.1 内部格式化数据 101 6.7.2 例子 102 6.8 格式化操纵算子 106 6.9 建立操纵算子 108 6.10 输入输出流实例 111 6.10.1 代码生成 111 6.10.2 一个简单的数据记录 117 6.11 小结 123 6.12 练习 123 第7章 常量 124 7.1 值替代 124 7.1.1 头文件里的const 124 7.1.2 const的安全性 125 7.1.3 集合 126 7.1.4 与C语言的区别 126 7.2 指针 127 7.2.1 指向const的指针 127 7.2.2 const指针 127 7.2.3 赋值和类型检查 128 7.3 函数参数和返回值 128 7.3.1 传递const值 128 7.3.2 返回const值 129 7.3.3 传递和返回地址 131 7.4 类 133 7.4.1 类里的const和enum 133 7.4.2 编译期间类里的常量 134 7.4.3 const对象和成员函数 136 7.4.4 只读存储能力 139 7.5 可变的(volatile) 140 7.6 小结 141 7.7 练习 141 第8章 内联函数 142 8.1 预处理器的缺陷 142 8.2 内联函数 144 8.2.1 类内部的内联函数 145 8.2.2 存取函数 146 8.3 内联函数和编译器 150 8.3.1 局限性 150 8.3.2 赋值顺序 150 8.3.3 在构造函数和析构函数里隐藏行为 151 8.4 减少混乱 152 8.5 预处理器的特点 153 8.6 改进的错误检查 154 8.7 小结 155 8.8 练习 155 第9章 命名控制 157 9.1 来自C语言中的静态成员 157 9.1.1 函数内部的静态变量 157 9.1.2 控制连接 160 9.1.3 其他的存储类型指定符 161 9.2 名字空间 161 9.2.1 产生一个名字空间 162 9.2.2 使用名字空间 163 9.3 C++中的静态成员 166 9.3.1 定义静态数据成员的存储 166 9.3.2 嵌套类和局部类 168 9.3.3 静态成员函数 169 9.4 静态初始化的依赖因素 171 9.5 转换连接指定 174 9.6 小结 174 9.7 练习 174 第10章 引用和拷贝构造函数 176 10.1 C++中的指针 176 10.2 C++中的引用 176 10.2.1 函数中的引用 177 10.2.2 参数传递准则 178 10.3 拷贝构造函数 179 10.3.1 传值方式传递和返回 179 10.3.2 拷贝构造函数 182 10.3.3 缺省拷贝构造函数 187 10.3.4 拷贝构造函数方法的选择 188 10.4 指向成员的指针

2010-03-28

JSP程序设计精彩实例(PDG)

JSP程序设计精彩实例(PDG).rar 文档类型:PDG

2010-03-28

Excel与VBA程序设计(mini)

标题:Excel与VBA程序设计(mini) 作者:马维峰 VBA简介.................................................................................................................................6 2.1. VBA及其IDE 初步...............................................................................................................6 2.1.1. VBA集成开发环境(IDE)的组成.............................................................................6 2.1.2. 在 VBA IDE下进行开发.............................................................................................10 2.1.3. 善用工具及其他...........................................................................................................12 2.2. 模块、函数和过程...............................................................................................................13 2.2.1. 模块...............................................................................................................................13 2.2.2. 过程...............................................................................................................................15 2.2.3. 函数...............................................................................................................................17 2.2.4. 调用过程和函数...........................................................................................................18 2.3. 数据类型与变量...................................................................................................................19 2.3.1. 常量和变量...................................................................................................................19 2.3.2. 数据类型.......................................................................................................................20 2.3.3. 运算符...........................................................................................................................22 2.3.4. 数组...............................................................................................................................23 2.3.5. 自定义数据类型...........................................................................................................24 2.3.6. 枚举类型.......................................................................................................................25 2.3.7. 变量的作用域(生存周期).......................................................................................26 2.3.8. 字符串...........................................................................................................................27 2.3.9. 日期和时间...................................................................................................................29 2.4. VBA语言基础......................................................................................................................30 2.4.1. 处理简单的用户输入输出...........................................................................................30 2.4.2. 控制程序流程...............................................................................................................31 2.4.3. 条件语句.......................................................................................................................31 2.4.4. 循环语句.......................................................................................................................34 2.4.5. With 语句......................................................................................................................37 2.4.6. Exit 语句.......................................................................................................................38 2.5. 用户窗体...............................................................................................................................39 2.5.1. 设计用户窗体...............................................................................................................39 2.5.2. 事件驱动.......................................................................................................................42 2.5.3. 使用控件.......................................................................................................................42 2.6. 调试VBA代码.....................................................................................................................44 2.6.1. 错误的类型...................................................................................................................44 2.6.2. 使用Debug对象..........................................................................................................45 2.6.3. VBA的调试工具..........................................................................................................45 2.7. 错误处理...............................................................................................................................46 2.7.1. 设置错误捕获...............................................................................................................47 2.7.2. 编写错误处理实用程序...............................................................................................47 2.7.3. 提供从错误处理程序跳出的出口...............................................................................47 2.7.4. 错误处理的简单示例...................................................................................................48 3. EXCEL 的对象模型..............................................................................................................50 3.1. EXCEL对象模型简介............................................................................................................50 3.2. APPLICATION 对象.................................................................................................................52 3.2.1. 控制 Excel状态和显示的属性....................................................................................53 3.2.2. 返回对象的属性...........................................................................................................54 3.2.3. 执行操作.......................................................................................................................56 3.2.4. Window 对象和Windows集合...................................................................................60 3.2.5. Application 事件..........................................................................................................60 3.3. WORKBOOK对象..................................................................................................................63 3.3.1. Workbooks 集合............................................................................................................63 3.3.2. Workbook 的属性.........................................................................................................63 3.3.3. Sheets集合....................................................................................................................65 3.3.4. Workbook 的方法........................................................................................................67 3.3.5. Workbook 的事件.........................................................................................................68 3.4. WORKSHEET 对象..................................................................................................................69 3.5. RANGE对象...........................................................................................................................72 3.5.1. 返回或获得 Range 对象...............................................................................................72 3.5.2. Range 对象的常用属性和方法....................................................................................75 4. 数据处理................................................................................................................................80 4.1. 概述.......................................................................................................................................80 4.2. EXCEL数据处理的方式和流程............................................................................................81 4.3. 操作数据文件.......................................................................................................................82 4.3.1. 使用 Excel对象操作数据文件....................................................................................83 4.3.2. 使用VBA语句操作文件.............................................................................................90 4.3.3. FileSystemObject 对象模型.......................................................................................101 4.4. 操作数据.............................................................................................................................110 4.4.1. 工作表数据引用.........................................................................................................110 4.4.2. 操作文本.....................................................................................................................113 4.4.3. 操作数值.....................................................................................................................117 4.4.4. Excel数据表函数.......................................................................................................121 5. 高级话题..............................................................................................................................123 5.1. EXCEL VBA程序的类型和部署.........................................................................................123 5.1.1. Excel VBA程序的类型..............................................................................................123 5.1.2. 加载宏和一般电子表格程序的优缺点.....................................................................123 5.1.3. 部署.............................................................................................................................124 5.2. VBA程序的安全性和保护................................................................................................124 5.3. 自动化其他OFFICE组件....................................................................................................125 5.3.1. 启动其他 Office 组件.................................................................................................126 5.3.2. 与其他Office组件交互.............................................................................................129 5.4. 通过其他程序自动化EXCEL..............................................................................................131 5.4.1. 创建 Excel对象..........................................................................................................131 5.4.2. Excel自动化中的事件...............................................................................................132 5.4.3. 使用 Excel完成业务逻辑..........................................................................................133 5.5. 关于 EXCEL工程的引用.....................................................................................................134 5.6. 提高效率的一些建议.........................................................................................................135 5.6.1. 尽量使用 Excel的内置函数......................................................................................135 5.6.2. 尽量减少使用对象引用.............................................................................................136 5.6.3. 高效使用 Range 对象.................................................................................................137 5.6.4. 减少对象的激活和选择.............................................................................................138 5.6.5. 关闭屏幕更新.............................................................................................................138 5.6.6. 提高关键代码的效率.................................................................................................138 5.6.7. 代码执行时间的测算.................................................................................................139 6. 附录......................................................................................................................................141 6.1. VBA命名规则....................................................................................................................141 6.1.1. 变量、常量、自定义类型和枚举.............................................................................141 6.1.2. 过程和函数.................................................................................................................142 6.1.3. 模块、类模块和用户窗体.........................................................................................142 6.1.4. VBA工程...................................................................................................................143 6.2. VBA代码规范....................................................................................................................143 6.2.1. 代码的排版.................................................................................................................143 6.2.2. 注释.............................................................................................................................144 6.2.3. 程序版本.....................................................................................................................145 6.2.4. 一些基本原则.............................................................................................................145

2010-03-25

JSP 数据库编程指南

中文名:JSP 数据库编程指南 英文名:JSP Database Programming Guide 北京希望电子出版社 作者:布雷恩.赖特 译:赵明昌 简介:详细介绍了jsp在大型粗线条据库Oracle中应用与开发。

2010-03-23

JSP 2.0 技术手册

作者:林上杰、林康司 出版:电子工业出版社 简介: 本书图文并茂,以丰富的实例为引导,全面介绍了主流的 Java Web 开发技术—— JSP 2.0,重点介绍Java在展示层的两项重要技术:Java Servlet与JavaServer Pages。 它们是最重要的 Java 核心技术。对这两项技术的深入了解,将有助于您未来对于 JavaServer Faces(JSF)技术以及Java Web Services技术的学习。

2010-03-23

Struts1.0 开发指南 多个文档

Struts1.0学习文档-初学者入门.doc Struts,MVC 的一种开放源码实现.doc Struts.doc Struts标记库.doc Struts开发指南之J2EE n层结构.doc Struts开发指南之MVC架构.doc Struts开发指南之Taglib.doc Struts开发指南之安装与使用.doc Struts开发指南之工作流程.doc Struts模块化编程教程 .doc struts傻瓜式学习(一天篇).doc 实例学习 Struts.doc 样章第02章 第一个Struts应用helloapp应用.doc 用Struts建立MVC应用的介绍.doc

2010-03-22

java 建模 UML

java 建模 UML体系开发。全文33页。

2010-03-22

Think in java 3

Think in java3 《java 编成思想》中文版。一共950页。

2010-03-22

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除