|
|
|
|
LEADER |
00000cam a2200000 a 4500 |
001 |
OR_ocm61849885 |
003 |
OCoLC |
005 |
20231017213018.0 |
006 |
m o d |
007 |
cr mn||||||||| |
008 |
051006s2005 caua o 001 0 eng d |
040 |
|
|
|a WAU
|b eng
|e pn
|c WAU
|d OCLCA
|d GZM
|d CUSER
|d VLB
|d CEF
|d OCLCQ
|d QE2
|d N$T
|d TEFOD
|d OCLCQ
|d OCLCF
|d OCLCQ
|d AU@
|d E7B
|d YDXCP
|d EBLCP
|d OCLCQ
|d COO
|d INARC
|d WYU
|d VT2
|d HS0
|d OCLCQ
|d OCLCO
|d OCLCQ
|d OCLCO
|
019 |
|
|
|a 326678348
|a 643540525
|a 745067419
|a 748107389
|a 759519697
|a 776201995
|a 846891337
|a 1035936966
|a 1044155664
|a 1056380747
|a 1060999676
|a 1062969172
|a 1100906650
|a 1103265194
|a 1129361176
|a 1202549470
|a 1240524238
|
020 |
|
|
|a 9780596550806
|q (electronic bk.)
|
020 |
|
|
|a 0596550804
|q (electronic bk.)
|
020 |
|
|
|a 9780596555566
|q (electronic bk.)
|
020 |
|
|
|a 0596555563
|q (electronic bk.)
|
020 |
|
|
|z 0596008732
|
020 |
|
|
|z 9780596008734
|
024 |
8 |
|
|a 0596008732
|
029 |
1 |
|
|a AU@
|b 000051331091
|
029 |
1 |
|
|a AU@
|b 000066232749
|
035 |
|
|
|a (OCoLC)61849885
|z (OCoLC)326678348
|z (OCoLC)643540525
|z (OCoLC)745067419
|z (OCoLC)748107389
|z (OCoLC)759519697
|z (OCoLC)776201995
|z (OCoLC)846891337
|z (OCoLC)1035936966
|z (OCoLC)1044155664
|z (OCoLC)1056380747
|z (OCoLC)1060999676
|z (OCoLC)1062969172
|z (OCoLC)1100906650
|z (OCoLC)1103265194
|z (OCoLC)1129361176
|z (OCoLC)1202549470
|z (OCoLC)1240524238
|
050 |
|
4 |
|a QA76.73.J38
|b N545 2005a
|
072 |
|
7 |
|a COM
|x 051310
|2 bisacsh
|
072 |
|
7 |
|a COM
|x 051280
|2 bisacsh
|
072 |
|
7 |
|a COM
|x 051130
|2 bisacsh
|
082 |
0 |
4 |
|a 005.13/3
|2 22
|
049 |
|
|
|a UAMI
|
100 |
1 |
|
|a Niemeyer, Patrick.
|
245 |
1 |
0 |
|a Learning Java /
|c Patrick Niemeyer and Jonathan Knudsen.
|
250 |
|
|
|a 3rd ed.
|
260 |
|
|
|a Sebastopol, CA :
|b O'Reilly,
|c ©2005.
|
300 |
|
|
|a 1 online resource (xx, 954 pages) :
|b illustrations
|
336 |
|
|
|a text
|b txt
|2 rdacontent
|
337 |
|
|
|a computer
|b c
|2 rdamedia
|
338 |
|
|
|a online resource
|b cr
|2 rdacarrier
|
347 |
|
|
|a text file
|
500 |
|
|
|a "Covers J2SE 5.0"--Cover
|
500 |
|
|
|a Includes index.
|
520 |
|
|
|a Version 5.0 of the Java 2 Standard Edition SDK is the most important upgrade since Java first appeared a decade ago. With Java 5.0, you'll not only find substantial changes in the platform, but to the language itself-something that developers of Java took five years to complete. The main goal of Java 5.0 is to make it easier for you to develop safe, powerful code, but none of these improvements makes Java any easier to learn, even if you've programmed with Java for years. And that means our bestselling hands-on tutorial takes on even greater significance. Learning Java is the most widely sought introduction to the programming language that's changed the way we think about computing. Our updated third edition takes an objective, no-nonsense approach to the new features in Java 5.0, some of which are drastically different from the way things were done in any previous versions. The most essential change is the addition of "generics", a feature that allows developers to write, test, and deploy code once, and then reuse the code again and again for different data types. The beauty of generics is that more problems will be caught during development, and Learning Java will show you exactly how it's done. Java 5.0 also adds more than 1,000 new classes to the Java library. That means 1,000 new things you can do without having to program it in yourself. That's a huge change. With our book's practical examples, you'll come up to speed quickly on this and other new features such as loops and threads. The new edition also includes an introduction to Eclipse, the open source IDE that is growing in popularity. Learning Java, 3rd Edition addresses all of the important uses of Java, such as web applications, servlets, and XML that are increasingly driving enterprise applications
|
542 |
|
|
|f Copyright © O'Reilly Media, Incorporated
|g 2005
|
505 |
0 |
|
|a Table of Contents; Preface; New Developments; New in This Edition; Using This Book; Online Examples; Online Resources; Conventions Used in This Book; Using Code Examples; Safari Enabled; How to Contact Us; Acknowledgments; Chapter 1. A Modern Language; Enter Java; Java's Origins; Growing Up; A Virtual Machine; Java Compared with Other Languages; Safety of Design; Simplify, Simplify, Simplify ... ; Type Safety and Method Binding; Incremental Development; Dynamic Memory Management; Error Handling; Threads; Scalability; Safety of Implementation; The Verifier; Class Loaders; Security Managers
|
505 |
8 |
|
|a Application and User-Level SecuritySigning Classes; Java and the Web; Applets; New Kinds of Media; New Software Development Models; Java as a General Application Language; A Java Road Map; The Past: Java 1.0-Java 1.4; The Present: Java 5.0; The Future; Availability; Chapter 2. A First Application; Java Tools and Environment; HelloJava; Classes; The main() Method; Classes and Objects; Variables and Class Types; HelloComponent; Inheritance; The JComponent Class; Relationships and Finger Pointing; Package and Imports; The paintComponent() Method; HelloJava2: The Sequel; Instance Variables
|
505 |
8 |
|
|a ConstructorsEvents; The repaint() Method; Interfaces; HelloJava3: The Button Strikes!; Method Overloading; Components; Containers; Layout; Subclassing and Subtypes; More Events and Interfaces; Color Commentary; Static Members; Arrays; Our Color Methods; HelloJava4: Netscape's Revenge; Threads; The Thread Class; The Runnable Interface; Starting the Thread; Running Code in the Thread; Exceptions; Synchronization; Troubleshooting; Compilation (javac) Errors; Runtime (java) Errors; Java Version Problems; The getContentPane() Error; Chapter 3. Tools of the Trade; The Java VM
|
505 |
8 |
|
|a Running Java ApplicationsSystem Properties; The Classpath; javap; The Java Compiler; JAR Files; File Compression; The jar Utility; JAR manifests; Making a JAR file runnable; The pack200 Utility; Policy Files; The Default Security Manager; The policytool Utility; Using a Policy File with the Default Security Manager; Chapter 4. The Java Language; Text Encoding; Comments; Javadoc Comments; Javadoc as metadata; Types; Primitive Types; Floating-point precision; Variable declaration and initialization; Integer literals; Floating-point literals; Character literals; Reference Types
|
505 |
8 |
|
|a A Word About StringsStatements and Expressions; Statements; if/else conditionals; do/while loops; The for loop; The enhanced for loop; switch statements; break/continue; Unreachable statements; Expressions; Operators; Assignment; The null value; Variable access; Method invocation; Object creation; The instanceof operator; Exceptions; Exceptions and Error Classes; Exception Handling; Bubbling Up; Stack Traces; Checked and Unchecked Exceptions; Throwing Exceptions; Chaining exceptions; try Creep; The finally Clause; Performance Issues; Assertions; Enabling and Disabling Assertions
|
590 |
|
|
|a O'Reilly
|b O'Reilly Online Learning: Academic/Public Library Edition
|
650 |
|
0 |
|a Java (Computer program language)
|
650 |
|
6 |
|a Java (Langage de programmation)
|
650 |
|
7 |
|a COMPUTERS
|x Programming Languages
|x C♯
|2 bisacsh
|
650 |
|
7 |
|a COMPUTERS
|x Programming Languages
|x Java.
|2 bisacsh
|
650 |
|
7 |
|a COMPUTERS
|x Programming Languages
|x Pascal.
|2 bisacsh
|
650 |
|
7 |
|a Java (Computer program language)
|2 fast
|
700 |
1 |
|
|a Knudsen, Jonathan.
|
776 |
0 |
8 |
|i Print version:
|z 0596008732
|w (DLC) 2005283476
|w (OCoLC)60532455
|
856 |
4 |
0 |
|u https://learning.oreilly.com/library/view/~/0596008732/?ar
|z Texto completo (Requiere registro previo con correo institucional)
|
938 |
|
|
|a ProQuest Ebook Central
|b EBLB
|n EBL3027301
|
938 |
|
|
|a ebrary
|b EBRY
|n ebr10762421
|
938 |
|
|
|a EBSCOhost
|b EBSC
|n 414892
|
938 |
|
|
|a Internet Archive
|b INAR
|n learningjava00niem_0
|
938 |
|
|
|a YBP Library Services
|b YANK
|n 7462393
|
938 |
|
|
|a YBP Library Services
|b YANK
|n 7488842
|
994 |
|
|
|a 92
|b IZTAP
|