自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

  • 博客(2)
  • 资源 (17)
  • 收藏
  • 关注

Initialization & Cleanup

1 Guaranteed initialization with the constructor    自动调用构造函数,给类中属性自动赋值。2 方法重载 Method overloading  方法重载主要是根据方法中参数的不同或者返回值的不同的几个同名方法。  2.1 Distinguishing overloaded methods  2.2 Overloading with primiti...

2008-02-19 15:01:08 78

Everything Is an Object

利用引用操作对象 You manipulate objects with references    任何事物都看成对象,实际操作的标识只是对象的引用。    String s = "asdf";    String s = new String("asdf"); 数据存放位置 Where storage lives    Registers:处理器内部,速度最快。    The stack:处于...

2008-02-18 18:50:52 71

华东项目经理培训(经典教程)

华东项目经理培训,经典易学,大家好好看看,希望有点收获。 书中自有黄金屋。。。。。。。。。。

2010-02-08

Learning jQuery 1.3.pdf

Learning jQuery 1.3.pdf

2009-09-06

ArcGIS Server 9.3 REST 基础教程

ArcGIS Server 9.3 REST 基础教程

2009-07-17

More Effective C#: 50 Specific Ways to Improve Your C#

This is the Safari online edition of the printed book. "Shining a bright light into many of the dark corners of C# 3.0, this book not only covers the 'how,' but also the 'why,' arming the reader with many field-tested methods for wringing the most from the new language features, such as LINQ, generics, and multithreading. If you are serious about developing with the C# language, you need this book." –Bill Craun, Principal Consultant, Ambassador Solutions, Inc. "More Effective C# is an opportunity to work beside Bill Wagner. Bill leverages his knowledge of C# and distills his expertise down to some very real advice about programming and designing applications that every serious Visual C# user should know. More Effective C# is one of those rare books that doesn't just regurgitate syntax, but teaches you how to use the C# language." –Peter Ritchie, Microsoft MVP: Visual C# "More Effective C# is a great follow-up to Bill Wagner's previous book. The extensive C# 3.0 and LINQ coverage is extremely timely!" –Tomas Restrepo, Microsoft MVP: Visual C++, .NET, and Biztalk Server "As one of the current designers of C#, it is rare that I learn something new about the language by reading a book. More Effective C# is a notable exception. Gently blending concrete code and deep insights, Bill Wagner frequently makes me look at C# in a fresh light–one that really makes it shine. More Effective C# is at the surface a collection of very useful guidelines. Look again. As you read through it, you'll find that you acquire more than just the individual pieces of advice; gradually you'll pick up on an approach to programming in C# that is thoughtful, beautiful, and deeply pleasant. While you can make your way willy-nilly through the individual guidelines, I do recommend reading the whole book–or at least not skipping over the chapter introductions before you dive into specific nuggets of advice. There's perspective and insight to be found there that in itself can be an important guide and inspiration for your future adventures in C#." –Mads Torgersen, Program Manager, Visual C#, Microsoft "Bill Wagner has written an excellent book outlining the best practices for developers who work with the C# language. By authoring More Effective C#, he has again established himself as one of the most important voices in the C# community. Many of us already know how to use C#. What we need is advice on how to hone our skills so that we can become wiser programmers. There is no more sophisticated source of information on how to become a first-class C# developer than Bill Wagner's book. Bill is intelligent, thoughtful, experienced, and skillful. By applying the lessons from this book to your own code, you will find many ways to polish and improve the work that you produce." –Charlie Calvert, Community Program Manager, Visual C#, Microsoft In More Effective C#, Microsoft C# MVP and Regional Director Bill Wagner introduces fifty brand-new ways to write more efficient and more robust software. This all-new book follows the same format as Wagner's best-selling Effective C# (Addison-Wesley, 2005), providing clear, practical explanations, expert tips, and plenty of realistic code examples. Wagner shows how to make the most of powerful innovations built into Microsoft's new C# 3.0 and .NET Framework 3.5, as well as advanced C# language capabilities not covered in his previous book. Drawing on his unsurpassed C# experience, the author reveals new best practices for working with LINQ, generics, metaprogramming, and many other features. He also uncovers practices that compromise performance or reliability and shows exactly how to avoid them. More Effective C# shows how to Use generics to express your design intent more effectively Master advanced generics techniques, such as constraints, method constraints, and generic specialization Use the multithreaded techniques you'll need to work with the .NET framework every day Express modern design idioms using the rich palette of C# language features Successfully mix object oriented and functional programming constructs Create composable interfaces and avoid confusion in public interfaces Use extension methods to separate contracts from implementation Program successfully with C# closures and anonymous types Write more effective LINQ queries Make the most of LINQ Lazy Evaluation Queries and Lambda Expressions Distinguish and convert between delegates and expression trees Efficiently utilize nullable types and partial classes Use implicit properties for mutable, nonserializable data You're already a successful C# programmer–this book can help you become an outstanding one.

2009-02-26

Java and XML, 3rd Edition

Java and XML, 3rd Edition, shows you how to cut through all the hype about XML and put it to work. It teaches you how to use the APIs, tools, and tricks of XML to build real-world applications. The result is a new approach to managing information that touches everything from configuration files to web sites. After two chapters on XML basics, including XPath, XSL, DTDs, and XML Schema, the rest of the book focuses on using XML from your Java applications. This third edition of Java and XML covers all major Java XML processing libraries, including full coverage of the SAX, DOM, StAX, JDOM, and dom4j APIs as well as the latest version of the Java API for XML Processing (JAXP) and Java Architecture for XML Binding (JAXB). The chapters on web technology have been entirely rewritten to focus on the today's most relevant topics: syndicating content with RSS and creating Web 2.0 applications. You'll learn how to create, read, and modify RSS feeds for syndicated content and use XML to power the next generation of websites with Ajax and Adobe Flash. Topics include: The basics of XML, including DTDs, namespaces, XML Schema, XPath, and Transformations The SAX API, including all handlers, filters, and writers The DOM API, including DOM Level 2, Level 3, and the DOM HTML module The JDOM API, including the core and a look at XPath support The StAX API, including StAX factories, producing documents and XMLPull Data Binding with JAXB, using the new JAXB 2.0 annotations Web syndication and podcasting with RSS XML on the Presentation Layer, paying attention to Ajax and Flash applications If you are developing with Java and need to use XML, or think that you will be in the future; if you're involved in the new peer-to-peer movement, messaging, or web services; or if you're developing software for electronic commerce, Java and XML will be an indispensable companion.

2009-02-21

Flex 3 Cookbook

The best way to show off a powerful new technology is to demonstrate real-world results with it, and that's exactly what Adobe and O'Reilly have done with Flex 3. Through it's Flex Cookbook website, Adobe invited users of the Flex 3 beta to post their own solutions for working with this technology, using O'Reilly's popular problem-solution-discussion format. Website monitors (and authors) Joshua Noble and Todd Anderson chose the most useful solutions for Flex 3 Cookbook. This highly practical book contains more than 200 proven recipes for developing interactive Rich Internet Applications and Web 2.0 sites, including several contributed by Noble, Anderson, and other Flex experts. You'll find everything from Flex basics and working with menus and controls, to methods for compiling, deploying, and configuring Flex applications. Each recipe features a discussion of how and why it works, and many of them offer sample code that you can put to use immediately. Topics include: Menus and controls Containers and dialogues Working with Text List, tiles, trees, and repeaters DataGrid and Advanced DataGrid Renderers Images, videos, and sounds CSS and skinning Building components States and effects Collections, arrays, and DataProviders DataBinding Validation/formatters Charting and data visualization State management, SharedObjects and LocalConnection Working with services and ServerSide communication Working with XML Communicating with the browser Application development strategies Runtime and dynamic shared libraries and modules Working with Adobe AIR Whether you're a committed Flex developer, or still evaluating the technology, you'll discover how to get quick results with Flex 3 using these these recipes. Now that Flex is an open source framework, the user community will continue to supply solutions to extend and improve the technology. This Cookbook offers you the cream of the crop.

2009-02-02

Flex 3 Developer's Guide

Flex Programming Elements User Interfaces Advanced Flex Programming Data Access and Interconnectivity

2009-02-02

Practical Wf Techniques And Examples Using Xaml And C#

Pakt - Programming Windows Workflow Foundation - Practical Wf Techniques And Examples Using Xaml And C# - 2006

2008-12-10

Essential Windows Workflow Foundation

Essential Windows Workflow Foundation

2008-12-10

Professional Windows Workflow Foundation

Professional Windows Workflow Foundation

2008-12-10

Microsoft Windows Workflow Foundation Step by Step

Microsoft Windows Workflow Foundation Step by Step

2008-12-10

Core Servlets and JavaServer Pages™: Volume 1: Core Technologies, 2nd Edition

The J2EE(TM) Platform has become the technology of choice for developing professional e-commerce applications, interactive Web sites, and Web-enabled applications and services. Servlet and JSP(TM) technology is the foundation of this platform: it provides the link between Web clients and server-side applications. In this 2nd edition of the worldwide bestseller, the authors show you how to apply the latest servlet and JSP capabilities. Unlike other books that treat servlet or JSP technology in isolation, Core Servlets and JavaServer Pages provides a unified treatment, showing you when servlet technology is best, when the JSP approach is preferred, and when (and how) servlets and JSP should work together. <br><br>Part I provides exhaustive coverage of the servlet 2.4 specification. It starts with server configuration, basic syntax, the servlet life cycle, and use of form data. It moves on to applying HTTP 1.1, cookies, and session tracking. Advanced topics include compressing Web content, incrementally updating results, dynamically generating images, and creating shopping carts. <br><br>Part II gives an in-depth guide to JSP 2.0. It covers both the "classic" JSP scripting elements and the new JSP 2.0 expression language. It shows how to control the content type, designate error pages, include files, and integrate JavaBeans components. Advanced topics include sharing beans, generating Excel spreadsheets, and dealing with concurrency. <br><br>Part III covers two key supporting technologies: HTML forms and database access with JDBC(TM). It explains every standard HTML input element and shows how to use appropriate JDBC drivers, perform database queries, process results, and perform updates. Advanced topics include parameterized queries, stored procedures, and transaction control. <br><br>Design strategies include ways to integrate servlet and JSP technology, best practices for invoking Java code from JSP pages, plans for dealing with missing and malformed data, and application of the MVC architecture. <br><br>Handy guides walk you through use of three popular servlet and JSP engines (Apache Tomcat, Macromedia JRun, and Caucho Resin) and some of the most widely used database systems (MySQL, Oracle9i, Microsoft Access). <br><br>Volume 2 of this book covers advanced topics: filters, custom tag libraries, database connection pooling, Web application security, the JSP Standard Tag Library (JSTL), Apache Struts, JavaServer Faces (JSF), JAXB, and more.<br><br>The same clear step-by-step explanations that made the first edition so popular <br><br>Completely updated for the latest standards: servlets 2.4 and JSP 2.0 <br><br>Hundreds of completely portable, fully documented, industrial-strength examples <br><br>

2008-02-27

The JFreeChart Class Library Developer Guide Version 1.0.6

The JFreeChart Class Library Developer Guide Version 1.0.6

2008-02-21

基于WebGIS的地质灾害预警预报信息系统的设计与实现

个人文章,只做收藏。

2008-02-19

Thinking In Java 练习题答案 第四版

Thinking In Java 练习题答案 第四版

2008-02-18

J2EE Tutorial 中文版

  《The J2EETM Tutorial 中文版》的作者是Sun Microsystem公司Java开发小组资深的开发人员,与另一部取得空前成功的《The JavaTM Tutorial》一样,建立了与读者之间最为有效的交互途径。同时,在本书的编写过程中,也综合了大量来自于最终用户和系统设计师们的建议与反馈,保证了《The J2EETM Tutorial 中文版》能真正提供有价值的技术指导。你会发现书中使用了许多构思精巧的实例程序(包括源码)来描述J2EE关键的概念。此外,简明扼要的文字说明也有助于你快速掌握J2EE平台的多项技术,包括:<br><br>  ☆ Enterprise JavaBean<br>  ☆ Java Servlet <br>  ☆ JavaServer Pages <br>  ☆ Java Message Service (JMS,Java消息服务) <br>  ☆ Java Naming and Directory Interface (JNDI,Java名字与目录接口) <br>  ☆ XML <br>  ☆ J2EE Connector Architecture (J2EE连接器架构) <br>  ☆ JavaMail <br>  ☆ JDBC<br>

2008-01-26

Thinking In Java Fourth Edition

Preface 1<br>Introduction 9<br>Introduction to Objects 15<br>Everything Is an Object 41<br>Operators 63<br>Controlling Execution 93<br>Initialization & Cleanup 107<br>Access Control 145<br>Reusing Classes 165<br>Polymorphism 193<br>Interfaces 219<br>Inner Classes 243<br>Holding Your Objects 275<br>Error Handling with Exceptions 313<br>Strings 355<br>Type Information 393<br>Generics 439<br>Arrays 535<br>Containers in Depth 567<br>I/O 647<br>Enumerated Types 725<br>Annotations 761<br>Concurrency 797<br>Graphical User Interfaces 937<br>A: Supplements 1043<br>B: Resources 1047<br>Index 1053

2008-01-26

空空如也

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

TA关注的人

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