دسترسی نامحدود
برای کاربرانی که ثبت نام کرده اند
برای ارتباط با ما می توانید از طریق شماره موبایل زیر از طریق تماس و پیامک با ما در ارتباط باشید
در صورت عدم پاسخ گویی از طریق پیامک با پشتیبان در ارتباط باشید
برای کاربرانی که ثبت نام کرده اند
درصورت عدم همخوانی توضیحات با کتاب
از ساعت 7 صبح تا 10 شب
دسته بندی: برنامه نویسی: زبان های برنامه نویسی ویرایش: 7 نویسندگان: Herbert Schildt سری: ISBN (شابک) : 0072263857, 9780072263855 ناشر: McGraw-Hill Osborne Media سال نشر: 2006 تعداد صفحات: 1057 زبان: English فرمت فایل : PDF (درصورت درخواست کاربر به PDF، EPUB یا AZW3 تبدیل می شود) حجم فایل: 6 مگابایت
کلمات کلیدی مربوط به کتاب جاوا: مرجع کامل: کتابخانه، ادبیات کامپیوتر، جاوا
در صورت تبدیل فایل کتاب Java: The Complete Reference به فرمت های PDF، EPUB، AZW3، MOBI و یا DJVU می توانید به پشتیبان اطلاع دهید تا فایل مورد نظر را تبدیل نمایند.
توجه داشته باشید کتاب جاوا: مرجع کامل نسخه زبان اصلی می باشد و کتاب ترجمه شده به فارسی نمی باشد. وبسایت اینترنشنال لایبرری ارائه دهنده کتاب های زبان اصلی می باشد و هیچ گونه کتاب ترجمه شده یا نوشته شده به فارسی را ارائه نمی دهد.
نویسنده برجسته برنامه نویسی جهان پوشش جامعی از نسخه جدید جاوا ارائه می دهد. راهنمای قطعی جاوا به طور کامل گسترش یافته است تا همه جنبه های Java SE 6، آخرین نسخه از محبوب ترین زبان برنامه نویسی وب جهان و #39 را پوشش دهد. این منبع جامع شامل همه چیزهایی است که برای توسعه، کامپایل، اشکال زدایی و اجرای برنامه ها و اپلت های جاوا نیاز دارید.
The world's leading programming author offers comprehensive coverage of the new Java releaseThe definitive guide to Java has been fully expanded to cover every aspect of Java SE 6, the latest version of the worldAnd#39;s most popular Web programming language. This comprehensive resource contains everything you need to develop, compile, debug, and run Java applications and applets.
Preface
Part I: The Java Language
1 The History and Evolution of Java
Java\'s Lineage
The Creation of Java
How Java Changed the Internet
Java\'s Magic: The Bytecode
Servlets: Java on the Server Side
The Java Buzzwords
The Evolution of Java
A Culture of Innovation
2 An Overview of Java
Object-Oriented Programming
A First Simple Program
A Second Short Program
Two Control Statements
Using Blocks of Code
Lexical Issues
The Java Class Libraries
3 Data Types, Variables, and Arrays
Java Is a Strongly Typed Language
The Primitive Types
Integers
Floating-Point Types. CharactersBooleans
A Closer Look at Literals
Variables
Type Conversion and Casting
Automatic Type Promotion in Expressions
Arrays
A Few Words About Strings
A Note to C/C++ Programmers About Pointers
4 Operators
Arithmetic Operators
The Bitwise Operators
Relational Operators
Boolean Logical Operators
The Assignment Operator
The? Operator
Operator Precedence
Using Parentheses
5 Control Statements
Java\'s Selection Statements
Iteration Statements
Jump Statements
6 Introducing Classes
Class Fundamentals
Declaring Objects
Assigning Object Reference Variables. Introducing MethodsConstructors
The this Keyword
Garbage Collection
The finalize() Method
A Stack Class
7 A Closer Look at Methods and Classes
Overloading Methods
Using Objects as Parameters
A Closer Look at Argument Passing
Returning Objects
Recursion
Introducing Access Control
Understanding static
Introducing final
Arrays Revisited
Introducing Nested and Inner Classes
Exploring the String Class
Using Command-Line Arguments
Varargs: Variable-Length Arguments
8 Inheritance
Inheritance Basics
Using super
Creating a Multilevel Hierarchy
When Constructors Are Called. Method OverridingDynamic Method Dispatch
Using Abstract Classes
Using final with Inheritance
The Object Class
9 Packages and Interfaces
Packages
Access Protection
Importing Packages
Interfaces
10 Exception Handling
Exception-Handling Fundamentals
Exception Types
Uncaught Exceptions
Using try and catch
Multiple catch Clauses
Nested try Statements
throw
throws
finally
Java\'s Built-in Exceptions
Creating Your Own Exception Subclasses
Chained Exceptions
Using Exceptions
11 Multithreaded Programming
The Java Thread Model
The Main Thread
Creating a Thread. Creating Multiple ThreadsUsing isAlive() and join()
Thread Priorities
Synchronization
Interthread Communication
Suspending, Resuming, and Stopping Threads
Using Multithreading
12 Enumerations, Autoboxing, and Annotations (Metadata)
Enumerations
Type Wrappers
Autoboxing
Annotations (Metadata)
13 I/O, Applets, and Other Topics
I/O Basics
Reading Console Input
Writing Console Output
The PrintWriter Class
Reading and Writing Files
Applet Fundamentals
The transient and volatile Modifiers
Using instanceof
strictfp
Native Methods
Using assert
Static Import.