النسور العربية
مرحبا بك عزيزى الزائر الكريم

تتشرف ادارة المنتدى بزيارة سيادتكم.
وقبولك كعضو دائم.

انضم إلى المنتدى ، فالأمر سريع وسهل

النسور العربية
مرحبا بك عزيزى الزائر الكريم

تتشرف ادارة المنتدى بزيارة سيادتكم.
وقبولك كعضو دائم.
النسور العربية
هل تريد التفاعل مع هذه المساهمة؟ كل ما عليك هو إنشاء حساب جديد ببضع خطوات أو تسجيل الدخول للمتابعة.
دخول

لقد نسيت كلمة السر

المواضيع الأخيرة
»  تحميل برنامج مكافحة الفيروسات Avira Antivirus Pro 15.0.44.143 Final
كتاب  Java for Programmers book Icon_minitimeالأحد مارس 17, 2019 12:07 pm من طرف BlueNile

» برنامج اختراق واى فاى
كتاب  Java for Programmers book Icon_minitimeالسبت مارس 09, 2019 2:24 am من طرف BlueNile

» make your own mini virtual reality games for mobile
كتاب  Java for Programmers book Icon_minitimeالجمعة مارس 08, 2019 10:06 am من طرف BlueNile

» اربح 10 دولار من موقع بيتلونا عند التسجيل مباشرة
كتاب  Java for Programmers book Icon_minitimeالجمعة فبراير 10, 2017 8:26 am من طرف BlueNile

» القنوات الناقلة لمباراة مصر و الكاميرون اليوم 5/2/2017
كتاب  Java for Programmers book Icon_minitimeالأحد فبراير 05, 2017 8:27 am من طرف BlueNile

»  بث مباشر.. موعد مشاهدة مباراة مصر وبوركينا فاسو في أمم أفريقيا 2017
كتاب  Java for Programmers book Icon_minitimeالأربعاء فبراير 01, 2017 5:58 am من طرف BlueNile

» افضل مواقع الربح من رفع الملفات الجديد
كتاب  Java for Programmers book Icon_minitimeالخميس يناير 30, 2014 9:11 am من طرف BlueNile

» تحميل برنامج Router Password Kracker v2.5 Final لمعرفة باسورد شبكة الوايرليس في اخر اصدار
كتاب  Java for Programmers book Icon_minitimeالسبت يناير 18, 2014 7:44 am من طرف BlueNile

»  تحميل برنامج WinToUSB 1.0.2014 Final عملاق حرق الويندوز علي الفلاشة في احدث اصدار
كتاب  Java for Programmers book Icon_minitimeالسبت يناير 18, 2014 7:35 am من طرف BlueNile

تسجيل صفحاتك المفضلة في مواقع خارجية

تسجيل صفحاتك المفضلة في مواقع خارجية reddit      

قم بحفض و مشاطرة الرابط النسور العربية على موقع حفض الصفحات

مارس 2024
الإثنينالثلاثاءالأربعاءالخميسالجمعةالسبتالأحد
    123
45678910
11121314151617
18192021222324
25262728293031

اليومية اليومية


كتاب Java for Programmers book

اذهب الى الأسفل

18052010

مُساهمة 

كتاب  Java for Programmers book Empty كتاب Java for Programmers book




كتاب  Java for Programmers book Java110
Java for Programmers|13mega

Table of Contents


Chapter 1: Introduction 1
1.1 Introduction 2
1.2 The Internet and the World Wide Web 3
1.3 History of C and C 3
1.4 History of Java 4
1.5 Java Class Libraries 4
1.6 Typical Java Development Environment 5
1.7 Notes about Java and Java for Programmers 8
1.8 Test-Driving a Java Application 9
1.9 Software Engineering Case Study: Introduction to Object Technology and the UML 13
1.10 Web 2.0 17
1.11 Software Technologies 18
1.12 Wrap-Up 19
1.13 Web Resources 20

Chapter 2: Introduction to Java Applications 22
2.1 Introduction 23
2.2 A First Program in Java: Printing a Line of Text 23
2.3 Modifying Our First Java Program 29
2.4 Displaying Text with printf 32
2.5 Another Java Application: Adding Integers 33
2.6 Arithmetic 37
2.7 Decision Making: Equality and Relational Operators 39
2.8 (Optional) Software Engineering Case Study: Examining the Requirements Document 44
2.9 Wrap-Up 53

Chapter 3: Introduction to Classes and Objects 54
3.1 Introduction 55
3.2 Classes, Objects, Methods and Instance Variables 55
3.3 Declaring a Class with a Method and Instantiating an Object of a Class 57
3.4 Declaring a Method with a Parameter61
3.5 Instance Variables, set Methods and get Methods 64
3.6 Primitive Types vs. Reference Types 69
3.7 Initializing Objects with Constructors 70
3.8 Floating-Point Numbers and Type double 73
3.9 (Optional) Software Engineering Case Study: Identifying the Classes in a Requirements Document 78
3.10 Wrap-Up 86

Chapter 4: Control Statements: Part 1 87
4.1 Introduction 88
4.2 Control Structures 88
4.3 if Single-Selection Statement 91
4.4 if…else Double-Selection Statement 91
4.5 while Repetition Statement 95
4.6 Counter-Controlled Repetition 96
4.7 Sentinel-Controlled Repetition 100
4.8 Nested Control Statements 106
4.9 Compound Assignment Operators 109
4.10 Increment and Decrement Operators 109
4.11 Primitive Types 112
4.12 (Optional) Software Engineering Case Study: Identifying Class Attributes 113
4.13 Wrap-Up 118

Chapter 5: Control Statements: Part 2 119
5.1 Introduction 120
5.2 Essentials of Counter-Controlled Repetition 120
5.3 for Repetition Statement 122
5.4 Examples Using the for Statement 125
5.5 do…while Repetition Statement 130
5.6 switch Multiple-Selection Statement 132
5.7 break and continue Statements 139
5.8 Logical Operators 141
5.9 (Optional) Software Engineering Case Study: Identifying Objects’ States and Activities 147
5.10 Wrap-Up 152

Chapter 6: Methods: A Deeper Look 153
6.1 Introduction 154
6.2 Program Modules in Java 155
6.3 static Methods, static Fields and Class Math 155
6.4 Declaring Methods with Multiple Parameters 158
6.5 Notes on Declaring and Using Methods 162
6.6 Method-Call Stack and Activation Records 163
6.7 Argument Promotion and Casting 164
6.8 Java API Packages 165
6.9 Case Study: Random-Number Generation 167
6.10 Case Study: A Game of Chance (Introducing Enumerations) 173
6.11 Scope of Declarations 177
6.12 Method Overloading 180
6.13 Introduction to Recursion 183
6.14 Recursion Concepts 184
6.15 Example Using Recursion: Factorials 184
6.16 Example Using Recursion: Fibonacci Series 187
6.17 Recursion and the Method-Call Stack 190
6.18 Recursion vs. Iteration 192
6.19 (Optional) Software Engineering Case Study: Identifying Class Operations 194
6.20 Wrap-Up 201

Chapter 7: Arrays 202
7.1 Introduction 203
7.2 Arrays 203
7.3 Declaring and Creating Arrays 205
7.4 Examples Using Arrays 206
7.5 Case Study: Card Shuffling and Dealing Simulation 215
7.6 Enhanced for Statement 219
7.7 Passing Arrays to Methods 220
7.8 Case Study: Class GradeBook Using an Array to Store Grades 224
7.9 Multidimensional Arrays 229
7.10 Case Study: Class GradeBook Using a Two-Dimensional Array 233
7.11 Variable-Length Argument Lists 239
7.12 Using Command-Line Arguments 240
7.13 (Optional) Software Engineering Case Study: Collaboration Among Objects 242
7.14 Wrap-Up 249

Chapter 8: Classes and Objects: A Deeper Look 251
8.1 Introduction 252
8.2 Time Class Case Study 253
8.3 Controlling Access to Members 256
8.4 Referring to the Current Object’s Members with the this Reference 257
8.5 Time Class Case Study: Overloaded Constructors 259
8.6 Default and No-Argument Constructors 265
8.7 Notes on Set and Get Methods 266
8.8 Composition 267
8.9 Enumerations 270
8.10 Garbage Collection and Method finalize 273
8.11 static Class Members 274
8.12 static Import 278
8.13 final Instance Variables 279
8.14 Software Reusability 282
8.15 Data Abstraction and Encapsulation 283
8.16 Time Class Case Study: Creating Packages 284
8.17 Package Access 290
8.18 (Optional) Software Engineering Case Study: Starting to Program the Classes of the ATM System 291
8.19 Wrap-Up 297

Chapter 9: Object-Oriented Programming: Inheritance 298
9.1 Introduction 299
9.2 Superclasses and Subclasses 300
9.3 protected Members 302
9.4 Relationship between Superclasses and Subclasses 303
9.5 Constructors in Subclasses 327
9.6 Software Engineering with Inheritance 333
9.7 Object Class 333
9.8 Wrap-Up 335

Chapter 10: Object-Oriented Programming: Polymorphism 336
10.1 Introduction 337
10.2 Polymorphism Examples 339
10.3 Demonstrating Polymorphic Behavior 340
10.4 Abstract Classes and Methods 342
10.5 Case Study: Payroll System Using Polymorphism 345
10.6 final Methods and Classes 360
10.7 Case Study: Creating and Using Interfaces 361
10.8 (Optional) Software Engineering Case Study: Incorporating Inheritance into the ATM System 373
10.9 Wrap-Up 380

Chapter 11: GUI Components: Part 1 381
11.1 Introduction 382
11.2 Simple GUI-Based Input/Output with JOptionPane 383
11.3 Overview of Swing Components 386
11.4 Displaying Text and Images in a Window 389
11.5 Text Fields and an Introduction to Event Handling with Nested Classes 393
11.6 Common GUI Event Types and Listener Interfaces 400
11.7 How Event Handling Works 401
11.8 JButton 404
11.9 Buttons That Maintain State 407
11.10 JComboBox and Using an Anonymous Inner Class for Event Handling 413
11.11 JList 417
11.12 Multiple-Selection Lists 420
11.13 Mouse Event Handling 422
11.14 Adapter Classes 427
11.15 JPanel Subclass for Drawing with the Mouse 430
11.16 Key-Event Handling 434
11.17 Layout Managers 438
11.18 Using Panels to Manage More Complex Layouts 447
11.19 JTextArea 449
11.20 Wrap-Up 452

Chapter 12: Graphics and Java 2D™️ 453
12.1 Introduction 454
12.2 Graphics Contexts and Graphics Objects 456
12.3 Color Control 457
12.4 Font Control 464
12.5 Drawing Lines, Rectangles and Ovals 470
12.6 Drawing Arcs 474
12.7 Drawing Polygons and Polylines 476
12.8 Java 2D API 479
12.9 Wrap-Up 486

Chapter 13: Exception Handling 487
13.1 Introduction 488
13.2 Exception-Handling Overview 489
13.3 Example: Divide by Zero without Exception Handling 490
13.4 Example: Handling ArithmeticExceptions and InputMismatchExceptions 492
13.5 When to Use Exception Handling 497
13.6 Java Exception Hierarchy 498
13.7 finally Block 500
13.8 Stack Unwinding 505
13.9 printStackTrace, getStackTrace and getMessage 506
13.10 Chained Exceptions 509
13.11 Declaring New Exception Types 511
13.12 Preconditions and Postconditions 512
13.13 Assertions 512
13.14 Wrap-Up 514

Chapter 14: Files and Streams 515
14.1 Introduction 516
14.2 Data Hierarchy 517
14.3 Files and Streams 519
14.4 Class File 520
14.5 Sequential-Access Text Files 525
14.6 Object Serialization 540
14.7 Additional java.io Classes 550
14.8 Opening Files with JFileChooser 552
14.9 Wrap-Up 555

Chapter 15: Generics 556
15.1 Introduction 557
15.2 Motivation for Generic Methods 558
15.3 Generic Methods: Implementation and Compile-Time Translation 560
15.4 Additional Compile-Time Translation Issues: Methods That Use a Type Parameter as the Return Type 563
15.5 Overloading Generic Methods 566
15.6 Generic Classes 567
15.7 Raw Types 577
15.8 Wildcards in Methods That Accept Type Parameters 581
15.9 Generics and Inheritance: Notes 585
15.10 Wrap-Up 586
15.11 Internet and Web Resources 586

Chapter 16: Collections 587
16.1 Introduction 588
16.2 Collections Overview 589
16.3 Class Arrays 590
16.4 Interface Collection and Class Collections 593
16.5 Lists 594
16.6 Collections Algorithms 605
16.7 Stack Class of Package java.util 618
16.8 Class PriorityQueue and Interface Queue 621
16.9 Sets 622
16.10 Maps 625
16.11 Properties Class 629
16.12 Synchronized Collections 632
16.13 Unmodifiable Collections 633
16.14 Abstract Implementations 634
16.15 Wrap-Up 634

Chapter 17: GUI Components: Part 2 635
17.1 Introduction 636
17.2 JSlider 636
17.3 Windows: Additional Notes 640
17.4 Using Menus with Frames 641
17.5 JPopupMenu 649
17.6 Pluggable Look-and-Feel 652
17.7 JDesktopPane and JInternalFrame 656
17.8 JTabbedPane 660
17.9 Layout Managers: BoxLayout and GridBagLayout 662
17.10 Wrap-Up 675

Chapter 18: Multithreading 676
18.1 Introduction 677
18.2 Thread States: Life Cycle of a Thread 679
18.3 Thread Priorities and Thread Scheduling 681
18.4 Creating and Executing Threads 683
18.5 Thread Synchronization 687
18.6 Producer/Consumer Relationship without Synchronization 696
18.7 Producer/Consumer Relationship: ArrayBlockingQueue 703
18.8 Producer/Consumer Relationship with Synchronization 706
18.9 Producer/Consumer Relationship: Bounded Buffers 712
18.10 Producer/Consumer Relationship: The Lock and Condition Interfaces 720
18.11 Multithreading with GUI 726
18.12 Other Classes and Interfaces in java.util.concurrent 741
18.13 Wrap-Up 741

Chapter 19: Networking 743
19.1 Introduction 744
19.2 Manipulating URLs 745
19.3 Reading a File on a Web Server 750
19.4 Establishing a Simple Server Using Stream Sockets 753
19.5 Establishing a Simple Client Using Stream Sockets 755
19.6 Client/Server Interaction with Stream Socket Connections 756
19.7 Connectionless Client/Server Interaction with Datagrams 768
19.8 Client/Server Tic-Tac-Toe Using a Multithreaded Server 775
19.9 Security and the Network 790
19.10 [Web Bonus] Case Study: DeitelMessenger Server and Client 790
19.11 Wrap-Up 790

Chapter 20: Accessing Databases with JDBC 791
20.1 Introduction 792
20.2 Relational Databases 793
20.3 Relational Database Overview: The books Database 794
20.4 SQL 797
20.5 Instructions for Installing MySQL and MySQL Connector/J 806
20.6 Instructions for Setting Up a MySQL User Account 807
20.7 Creating Database books in MySQL 808
20.8 Manipulating Databases with JDBC 809
20.9 RowSet Interface 825
20.10 Java DB/Apache Derby 828
20.11 PreparedStatements 829
20.12 Stored Procedures 844
20.13 Transaction Processing 845
20.14 Wrap-Up 846
20.15 Web Resources 846

Chapter 21: JavaServer™️ Faces Web Applications 847
21.1 Introduction 848
21.2 Simple HTTP Transactions 849
21.3 Multitier Application Architecture 852
21.4 Java Web Technologies 853
21.5 Creating and Running a Simple Application in Netbeans 857
21.6 JSF Components 870
21.7 Session Tracking 883
21.8 Wrap-Up 905

Chapter 22: Ajax-Enabled JavaServer™️ Faces Web Applications 906
22.1 Introduction 907
22.2 Accessing Databases in Web Applications 907
22.3 Ajax-Enabled JSF Components 920
22.4 Creating an Autocomplete Text Field and Using Virtual Forms 922
22.5 Wrap-Up 932

Chapter 23: JAX-WS Web Services 933
23.1 Introduction 934
23.2 Java Web Services Basics 936
23.3 Creating, Publishing, Testing and Describing a Web Service 936
23.4 Consuming a Web Service 946
23.5 SOAP 955
23.6 Session Tracking in Web Services 957
23.7 Consuming a Database-Driven Web Service from a Web Application 973
23.8 Passing an Object of a User-Defined Type to a Web Service 982
23.9 Wrap-Up 992

Chapter 24: Formatted Output 993
24.1 Introduction 994
24.2 Streams 994
24.3 Formatting Output with printf 994
24.4 Printing Integers 995
24.5 Printing Floating-Point Numbers 996
24.6 Printing Strings and Characters 998
24.7 Printing Dates and Times 999
24.8 Other Conversion Characters 1002
24.9 Printing with Field Widths and Precisions 1003
24.10 Using Flags in the printf Format String 1005
24.11 Printing with Argument Indices 1009
24.12 Printing Literals and Escape Sequences 1010
24.13 Formatting Output with Class Formatter 1010
24.14 Wrap-Up 1012

Chapter 25: Strings, Characters and Regular Expressions 1013
25.1 Introduction 1014
25.2 Fundamentals of Characters and Strings 1014
25.3 Class String 1015
25.4 Class StringBuilder 1028
25.5 Class Character 1035
25.6 Class StringTokenizer 1039
25.7 Regular Expressions, Class Pattern and Class Matcher 1041
25.8 Wrap-Up 1049


download
mirror
BlueNile
BlueNile
Admin

عدد المساهمات : 232
تاريخ التسجيل : 28/01/2010
العمر : 37

https://arabeagles.com

الرجوع الى أعلى الصفحة اذهب الى الأسفل

مُشاطرة هذه المقالة على: reddit

كتاب Java for Programmers book :: تعاليق

لا يوجد حالياً أي تعليق

الرجوع الى أعلى الصفحة

- مواضيع مماثلة

 
صلاحيات هذا المنتدى:
لاتستطيع الرد على المواضيع في هذا المنتدى