Introduction to Java programming: brief version
Gespeichert in:
1. Verfasser: | |
---|---|
Format: | Buch |
Sprache: | English |
Veröffentlicht: |
Upper Saddle River, NJ
Pearson Prentice Hall
2009
|
Ausgabe: | 7th ed., internat. ed. |
Schlagworte: | |
Online-Zugang: | Inhaltsverzeichnis |
Beschreibung: | 733 S. Ill. |
ISBN: | 9780138146269 0138146268 |
Internformat
MARC
LEADER | 00000nam a2200000 c 4500 | ||
---|---|---|---|
001 | BV035153386 | ||
003 | DE-604 | ||
005 | 20081215 | ||
007 | t | ||
008 | 081111s2009 a||| |||| 00||| eng d | ||
020 | |a 9780138146269 |9 978-0-13-814626-9 | ||
020 | |a 0138146268 |9 0-13-814626-8 | ||
020 | |a 9780138146269 |9 978-0-13-814626-9 | ||
035 | |a (OCoLC)248983417 | ||
035 | |a (DE-599)BVBBV035153386 | ||
040 | |a DE-604 |b ger |e rakwb | ||
041 | 0 | |a eng | |
049 | |a DE-703 | ||
082 | 0 | |a 005.2762 |2 22 | |
084 | |a ST 250 |0 (DE-625)143626: |2 rvk | ||
100 | 1 | |a Liang, Y. Daniel |e Verfasser |4 aut | |
245 | 1 | 0 | |a Introduction to Java programming |b brief version |c Y. Daniel Liang |
250 | |a 7th ed., internat. ed. | ||
264 | 1 | |a Upper Saddle River, NJ |b Pearson Prentice Hall |c 2009 | |
300 | |a 733 S. |b Ill. | ||
336 | |b txt |2 rdacontent | ||
337 | |b n |2 rdamedia | ||
338 | |b nc |2 rdacarrier | ||
650 | 4 | |a Java (Computer program language) | |
650 | 4 | |a Java (Computer program language) | |
650 | 0 | 7 | |a Java Standard Edition 8 |0 (DE-588)1049861094 |2 gnd |9 rswk-swf |
650 | 0 | 7 | |a Java Standard Edition 7 |0 (DE-588)7751205-4 |2 gnd |9 rswk-swf |
650 | 0 | 7 | |a Java |g Programmiersprache |0 (DE-588)4401313-9 |2 gnd |9 rswk-swf |
689 | 0 | 0 | |a Java |g Programmiersprache |0 (DE-588)4401313-9 |D s |
689 | 0 | |5 DE-604 | |
689 | 1 | 0 | |a Java Standard Edition 7 |0 (DE-588)7751205-4 |D s |
689 | 1 | 1 | |a Java Standard Edition 8 |0 (DE-588)1049861094 |D s |
689 | 1 | |8 1\p |5 DE-604 | |
856 | 4 | 2 | |m Digitalisierung UB Bayreuth |q application/pdf |u http://bvbr.bib-bvb.de:8991/F?func=service&doc_library=BVB01&local_base=BVB01&doc_number=016960602&sequence=000002&line_number=0001&func_code=DB_RECORDS&service_type=MEDIA |3 Inhaltsverzeichnis |
999 | |a oai:aleph.bib-bvb.de:BVB01-016960602 | ||
883 | 1 | |8 1\p |a cgwrk |d 20201028 |q DE-101 |u https://d-nb.info/provenance/plan#cgwrk |
Datensatz im Suchindex
_version_ | 1804138312651243520 |
---|---|
adam_text | CONTENTS
Chapter
1
Introduction to Computers, Programs,
and Java
29
1.1 Introduction
30
1.2
What Is a Computer?
30
1.3
Programs
33
1.4
Operating Systems
35
1.5
Number Systems
36
1.6
Java, World Wide Web, and Beyond
40
1.7
The Java Language Specification, API, JDK, and IDE
42
1.8
A Simple Java Program
43
1.9
Creating, Compiling, and Executing a Java Program
44
1.
10
(GUI) Displaying Text in a Message Dialog Box
47
Chapter
2
Elementary Programming
53
2.1
Introduction
54
2.2
Writing Simple Programs
54
2.3
Identifiers
56
2.4
Variables
57
2.5
Assignment Statements and Assignment Expressions
58
2.6
Constants
59
2.7
Numeric Data Types and Operations
60
2.8
Numeric Type Conversions
67
2.9
Character Data Type and Operations
68
2.10
The String Type
71
2.11
Console Input Using the Scanner Class
72
2.12
Casestudies
74
2.13
Programming Style and Documentation
79
2.14
Programming Errors
81
2.15
Debugging
82
2.16
(GUI) Getting Input from Input Dialogs
83
Chapter
3
Selections
95
3.1
Introduction
96
3.2
bool ean Data Type and Operations
96
3.3
i f
Statements
100
3.4
switch Statements
114
3.5
Conditional Expressions
116
19
20
Contents
3.6
Formatting Console Output 117
3.7
Operator Precedence and Associativity
П9
3.8
(GUI) Confirmation Dialogs 12°
Chapter
4
Loops 131
4.1
Introduction 132
4.2
The while Loop 132
4.3
The do-while Loop 138
4.4
The for Loop 13?
4.5
Which Loop to Use?
141
4.6
Nested Loops
143
4.7
Minimizing Numeric Errors
144
4.8
Case Studies
145
4.9
Keywords break and
conti
nue
150
4.10
(GUI) Controlling a Loop with a Confirmation Dialog
155
Chapter
5
Methods
169
5.1
Introduction
170
5.2
Defining a Method
170
5.3
Calling a Method
171
5.4
voi d
Method Example
173
5.5
Passing Parameters by Values
175
5.6
Modularizing Code
177
5.7
Overloading Methods
179
5.8
The Scope of Variables
181
5.9
The Math Class
182
5.10
Case Study: Generating Random Characters
185
5.11
Method Abstraction and Stepwise Refinement
187
Chapter
6
Arrays
207
6.1
Introduction
208
6.2
Array Basics
208
6.3
Copying Arrays
216
6.4
Passing Arrays to Methods
217
6.5
Returning an Array from a Method
220
6.6
Variable-Length Argument Lists
223
6.7
Searching Arrays
224
6.8
Sorting Arrays
227
6.9
The Arrays Class
230
6.10
Two-Dimensional Arrays
231
6.1
1 Multidimensional Arrays
243
Contents 21
Chapter
7
Objects and Classes
257
7.1
Introduction
258
7.2
Defining Classes for Objects
258
7.3
Constructing Objects Using Constructors
260
7.4
Accessing Objects via Reference Variables
260
7.5
Using Classes from the Java Library
266
7.6
Static Variables, Constants, and Methods
269
7.7
Visibility Modifiers
273
7.8
Data Field Encapsulation
275
7.9
Passing Objects to Methods
277
7.10
Array of Objects
279
Chapter
8
Strings and Text I/O
291
8.1
Introduction
292
8.2
The String Class
292
8.3
The Character Class
301
8.4
The StringBuilder/StringBuffer Class
304
8.5
Command-Line Arguments
308
8.6
The
Fi le
Class
311
8.7
File Input and Output
313
8.8
(GUI) File Dialogs
318
Chapter
9
Thinking in Objects
ззі
9.1
Introduction
332
9.2
Immutable Objects and Classes
332
9.3
The Scope of Variables
333
9.4
The this Reference
334
9.5
Class Abstraction and Encapsulation
335
9.6
Object-Oriented Thinking
339
9.7
Designing the Course Class
341
9.8
Designing a Class for Stacks
344
9.9
Designing the CuessDate Class
346
Chapter
10
Inheritance and Polymorphism
357
I O.I Introduction
358
10.2
Superclasses and Subclasses
358
10.3
Extending the
J
Frame Class
363
10.4
Using the super Keyword
364
10.5
Overriding Methods
366
10.6
Overriding vs. Overloading
367
10.7
The Ob
j
eet
Class and Its Methods
368
22 Contents
10.8
Polymorphism,
Dynamic
Binding, and
Generic Programming 369
10.9 Casting
Objects and the
i nstanceof
Operator
371
10.10
TheArrayListClass
373
10.11
A Custom Stack Class
377
10.12
The protected Data and Methods
378
10.13
Preventing Extending and Overriding
379
Chapter
11
Abstract Classes and Interfaces
з89
11.1
Introduction
390
11.2
Abstract Classes
390
11.3
Example: Calendar and
Gregoři
anCalendar
394
11.4
Interfaces
397
11.5
Example: The Comparable Interface
398
1
1.6
Example: The
ActionLi stener
Interface
401
11.7
Example: The Cloneabl
e
Interface
402
11
.8
Interfaces vs. Abstract Classes
405
11
.9
Processing Primitive Data Type Values as Objects
408
11.10
Sorting an Array of Objects
410
11.11
Automatic Conversion between Primitive Types and
Wrapper Class Types
412
11.12
The Biglnteger and BigDecimal Classes
413
Chapter
12
Object-Oriented Design and Patterns
421
12.1
Introduction
422
12.2
Software Life Cycle
422
12.3
Discovering Classes
423
12.4
Discovering Class Relationships
424
12.5
Case Study: Object-Oriented Design
428
12.6
Case Study: The Rational Class
433
12.7
Class Design Guidelines
438
12.8
Framework-Based Programming Using Java API
441
12.9
Design Patterns
442
Chapter
13
GUI Basics 447
13.1
Introduction
448
13.2
Swing vs. AWT
448
13.3
TheJavaGUIAPI
448
1
3.4
Frames
451
1
3.5
Layout Managers
453
13.6
The Color Class
460
13.7
The Font Class
460
Contents 23
13.8
Using
Panels
as Subcontainers
1
3.9
Common Features of Swing GUI Components
13.10
Image Icons
Chapter
14
Graphics
14-1
Introduction
14.2
Graphical Coordinate Systems
14.3
The Graphi cs Class
144
The
pai
ntComponent Method
14.5
Drawing Graphics on Panels
14-6
Drawing Strings, Lines, Rectangles, and Ovals
14.7
Case Study: The FigurePanel Class
14.8
Drawing Arcs
14-9
Drawing Polygons and Polylines
14.10 Centering a String Using the FontMetrics Class
14.1
1 Case Study: The MessagePanel Class
14.12
Case Study: The StillClock Class
14.13
Displaying Images
ИИ
Case Study: The ImageVi ewe
г
Class
Chapter
15
Event-Driven Programming
15.1
Introduction
15.2
Event and Event Source
15.3
Listeners, Registrations, and Handling
15.4
Mouse Events
15.5
Key Events
15.6
Animation Using the Timer Class
Chapter
16
Creating User Interfaces
16.1
Introduction
16.2
Buttons
16.3
Check Boxes
16.4
Radio Buttons
16.5
Labels
16.6
Text Fields
16.7
Text Areas
16.8
Combo Boxes
16.9
Lists
16.10
Scroll Bars
16.11
Sliders
16.12
Creating Multiple Windows
461
463
465
473
474
474
474
477
478
479
480
484
486
488
490
495
499
501
511
512
512
513
526
529
531
541
542
542
548
551
553
554
556
559
562
566
569
571
24 Contents
Chapter
17 Applets
and Multimedia
585
17.1
Introduction 586
17.2
The
Applet
Class
586
17.3
The
ЗАррі
et
Class
588
1
7.4
The HTML File and the <applet> Tag
589
1
7.5
Enabling Applets to Run as Applications
595
17.6
Passing Strings to Applets
596
1
7.7
Case Study: TicTacToe
600
1
7.8
Case Study: Bouncing Ball
605
1
7.9
Locating Resources Using the URL Class
608
17.10
Playing Audio in Any Java Program
609
17.11
Case Study: Multimedia Animations
610
Chapter
18
Exception Handling
625
18.1
Introduction
626
18.2
Exception-Handling Overview
626
18.3
Exception-Handling Advantages
628
18.4
Exception Types
629
18.5
Understanding Exception Handling
632
1
8.6
The
fi
nal
1
y
Clause
639
18.7
When to Use Exceptions
640
18.8
Rethrowing Exceptions
640
1
8.9
Chained Exceptions
641
18.10
Creating Custom Exception Classes
642
Chapter
19
Binary I/O
esi
19.1
Introduction
652
1
9.2
How is I/O Handled in Java?
652
1
9.3
Text I/O vs. Binary I/O
652
1
9.4
Binary I/O Classes
654
1
9.5
Problem: Copying Files
661
19.6
Object I/O
663
19.7
Random Access Files
667
19.8
Problem: Creating an Address Book
670
Chapter
20
Recursion
без
20.1
Introduction
684
20.2
Problem: Computing Factorials
684
20.3
Problem: Computing Fibonacci Numbers
687
20.4
Problem Solving Using Recursion
689
20.5
Recursive Helper Methods
690
Contents 25
20.6 Problem:
Finding the
Directory
Size
693
20.7 Problem: Tower
of
Hanoi 694
20.8 Problem:
Fractals
698
20.9 Problem:
Eight
Queens 701
20.10
Recursion
versus Iteration 703
Appendixes
Appendix A Java Keywords
713
Appendix
в
The ASCII
Character Set
716
Appendix
с
Operator
Precedence
Chart 718
Appendix
D
Java Modifiers
720
Appendix
E Special
Floating-Point
Values
722
Index 723
|
adam_txt |
CONTENTS
Chapter
1
Introduction to Computers, Programs,
and Java
29
1.1 Introduction
30
1.2
What Is a Computer?
30
1.3
Programs
33
1.4
Operating Systems
35
1.5
Number Systems
36
1.6
Java, World Wide Web, and Beyond
40
1.7
The Java Language Specification, API, JDK, and IDE
42
1.8
A Simple Java Program
43
1.9
Creating, Compiling, and Executing a Java Program
44
1.
10
(GUI) Displaying Text in a Message Dialog Box
47
Chapter
2
Elementary Programming
53
2.1
Introduction
54
2.2
Writing Simple Programs
54
2.3
Identifiers
56
2.4
Variables
57
2.5
Assignment Statements and Assignment Expressions
58
2.6
Constants
59
2.7
Numeric Data Types and Operations
60
2.8
Numeric Type Conversions
67
2.9
Character Data Type and Operations
68
2.10
The String Type
71
2.11
Console Input Using the Scanner Class
72
2.12
Casestudies
74
2.13
Programming Style and Documentation
79
2.14
Programming Errors
81
2.15
Debugging
82
2.16
(GUI) Getting Input from Input Dialogs
83
Chapter
3
Selections
95
3.1
Introduction
96
3.2
bool ean Data Type and Operations
96
3.3
i f
Statements
100
3.4
switch Statements
114
3.5
Conditional Expressions
116
19
20
Contents
3.6
Formatting Console Output 117
3.7
Operator Precedence and Associativity
П9
3.8
(GUI) Confirmation Dialogs 12°
Chapter
4
Loops 131
4.1
Introduction 132
4.2
The while Loop 132
4.3
The do-while Loop 138
4.4
The for Loop 13?
4.5
Which Loop to Use?
141
4.6
Nested Loops
143
4.7
Minimizing Numeric Errors
144
4.8
Case Studies
145
4.9
Keywords break and
conti
nue
150
4.10
(GUI) Controlling a Loop with a Confirmation Dialog
155
Chapter
5
Methods
169
5.1
Introduction
170
5.2
Defining a Method
170
5.3
Calling a Method
171
5.4
voi d
Method Example
173
5.5
Passing Parameters by Values
175
5.6
Modularizing Code
177
5.7
Overloading Methods
179
5.8
The Scope of Variables
181
5.9
The Math Class
182
5.10
Case Study: Generating Random Characters
185
5.11
Method Abstraction and Stepwise Refinement
187
Chapter
6
Arrays
207
6.1
Introduction
208
6.2
Array Basics
208
6.3
Copying Arrays
216
6.4
Passing Arrays to Methods
217
6.5
Returning an Array from a Method
220
6.6
Variable-Length Argument Lists
223
6.7
Searching Arrays
224
6.8
Sorting Arrays
227
6.9
The Arrays Class
230
6.10
Two-Dimensional Arrays
231
6.1
1 Multidimensional Arrays
243
Contents 21
Chapter
7
Objects and Classes
257
7.1
Introduction
258
7.2
Defining Classes for Objects
258
7.3
Constructing Objects Using Constructors
260
7.4
Accessing Objects via Reference Variables
260
7.5
Using Classes from the Java Library
266
7.6
Static Variables, Constants, and Methods
269
7.7
Visibility Modifiers
273
7.8
Data Field Encapsulation
275
7.9
Passing Objects to Methods
277
7.10
Array of Objects
279
Chapter
8
Strings and Text I/O
291
8.1
Introduction
292
8.2
The String Class
292
8.3
The Character Class
301
8.4
The StringBuilder/StringBuffer Class
304
8.5
Command-Line Arguments
308
8.6
The
Fi le
Class
311
8.7
File Input and Output
313
8.8
(GUI) File Dialogs
318
Chapter
9
Thinking in Objects
ззі
9.1
Introduction
332
9.2
Immutable Objects and Classes
332
9.3
The Scope of Variables
333
9.4
The this Reference
334
9.5
Class Abstraction and Encapsulation
335
9.6
Object-Oriented Thinking
339
9.7
Designing the Course Class
341
9.8
Designing a Class for Stacks
344
9.9
Designing the CuessDate Class
346
Chapter
10
Inheritance and Polymorphism
357
I O.I Introduction
358
10.2
Superclasses and Subclasses
358
10.3
Extending the
J
Frame Class
363
10.4
Using the super Keyword
364
10.5
Overriding Methods
366
10.6
Overriding vs. Overloading
367
10.7
The Ob
j
eet
Class and Its Methods
368
22 Contents
10.8
Polymorphism,
Dynamic
Binding, and
Generic Programming 369
10.9 Casting
Objects and the
i nstanceof
Operator
371
10.10
TheArrayListClass
373
10.11
A Custom Stack Class
377
10.12
The protected Data and Methods
378
10.13
Preventing Extending and Overriding
379
Chapter
11
Abstract Classes and Interfaces
з89
11.1
Introduction
390
11.2
Abstract Classes
390
11.3
Example: Calendar and
Gregoři
anCalendar
394
11.4
Interfaces
397
11.5
Example: The Comparable Interface
398
1
1.6
Example: The
ActionLi stener
Interface
401
11.7
Example: The Cloneabl
e
Interface
402
11
.8
Interfaces vs. Abstract Classes
405
11
.9
Processing Primitive Data Type Values as Objects
408
11.10
Sorting an Array of Objects
410
11.11
Automatic Conversion between Primitive Types and
Wrapper Class Types
412
11.12
The Biglnteger and BigDecimal Classes
413
Chapter
12
Object-Oriented Design and Patterns
421
12.1
Introduction
422
12.2
Software Life Cycle
422
12.3
Discovering Classes
423
12.4
Discovering Class Relationships
424
12.5
Case Study: Object-Oriented Design
428
12.6
Case Study: The Rational Class
433
12.7
Class Design Guidelines
438
12.8
Framework-Based Programming Using Java API
441
12.9
Design Patterns
442
Chapter
13
GUI Basics 447
13.1
Introduction
448
13.2
Swing vs. AWT
448
13.3
TheJavaGUIAPI
448
1
3.4
Frames
451
1
3.5
Layout Managers
453
13.6
The Color Class
460
13.7
The Font Class
460
Contents 23
13.8
Using
Panels
as Subcontainers
1
3.9
Common Features of Swing GUI Components
13.10
Image Icons
Chapter
14
Graphics
14-1
Introduction
14.2
Graphical Coordinate Systems
14.3
The Graphi cs Class
144
The
pai
ntComponent Method
14.5
Drawing Graphics on Panels
14-6
Drawing Strings, Lines, Rectangles, and Ovals
14.7
Case Study: The FigurePanel Class
14.8
Drawing Arcs
14-9
Drawing Polygons and Polylines
14.10 Centering a String Using the FontMetrics Class
14.1
1 Case Study: The MessagePanel Class
14.12
Case Study: The StillClock Class
14.13
Displaying Images
ИИ
Case Study: The ImageVi ewe
г
Class
Chapter
15
Event-Driven Programming
15.1
Introduction
15.2
Event and Event Source
15.3
Listeners, Registrations, and Handling
15.4
Mouse Events
15.5
Key Events
15.6
Animation Using the Timer Class
Chapter
16
Creating User Interfaces
16.1
Introduction
16.2
Buttons
16.3
Check Boxes
16.4
Radio Buttons
16.5
Labels
16.6
Text Fields
16.7
Text Areas
16.8
Combo Boxes
16.9
Lists
16.10
Scroll Bars
16.11
Sliders
16.12
Creating Multiple Windows
461
463
465
473
474
474
474
477
478
479
480
484
486
488
490
495
499
501
511
512
512
513
526
529
531
541
542
542
548
551
553
554
556
559
562
566
569
571
24 Contents
Chapter
17 Applets
and Multimedia
585
17.1
Introduction 586
17.2
The
Applet
Class
586
17.3
The
ЗАррі
et
Class
588
1
7.4
The HTML File and the <applet> Tag
589
1
7.5
Enabling Applets to Run as Applications
595
17.6
Passing Strings to Applets
596
1
7.7
Case Study: TicTacToe
600
1
7.8
Case Study: Bouncing Ball
605
1
7.9
Locating Resources Using the URL Class
608
17.10
Playing Audio in Any Java Program
609
17.11
Case Study: Multimedia Animations
610
Chapter
18
Exception Handling
625
18.1
Introduction
626
18.2
Exception-Handling Overview
626
18.3
Exception-Handling Advantages
628
18.4
Exception Types
629
18.5
Understanding Exception Handling
632
1
8.6
The
fi
nal
1
y
Clause
639
18.7
When to Use Exceptions
640
18.8
Rethrowing Exceptions
640
1
8.9
Chained Exceptions
641
18.10
Creating Custom Exception Classes
642
Chapter
19
Binary I/O
esi
19.1
Introduction
652
1
9.2
How is I/O Handled in Java?
652
1
9.3
Text I/O vs. Binary I/O
652
1
9.4
Binary I/O Classes
654
1
9.5
Problem: Copying Files
661
19.6
Object I/O
663
19.7
Random Access Files
667
19.8
Problem: Creating an Address Book
670
Chapter
20
Recursion
без
20.1
Introduction
684
20.2
Problem: Computing Factorials
684
20.3
Problem: Computing Fibonacci Numbers
687
20.4
Problem Solving Using Recursion
689
20.5
Recursive Helper Methods
690
Contents 25
20.6 Problem:
Finding the
Directory
Size
693
20.7 Problem: Tower
of
Hanoi 694
20.8 Problem:
Fractals
698
20.9 Problem:
Eight
Queens 701
20.10
Recursion
versus Iteration 703
Appendixes
Appendix A Java Keywords
713
Appendix
в
The ASCII
Character Set
716
Appendix
с
Operator
Precedence
Chart 718
Appendix
D
Java Modifiers
720
Appendix
E Special
Floating-Point
Values
722
Index 723 |
any_adam_object | 1 |
any_adam_object_boolean | 1 |
author | Liang, Y. Daniel |
author_facet | Liang, Y. Daniel |
author_role | aut |
author_sort | Liang, Y. Daniel |
author_variant | y d l yd ydl |
building | Verbundindex |
bvnumber | BV035153386 |
classification_rvk | ST 250 |
ctrlnum | (OCoLC)248983417 (DE-599)BVBBV035153386 |
dewey-full | 005.2762 |
dewey-hundreds | 000 - Computer science, information, general works |
dewey-ones | 005 - Computer programming, programs, data, security |
dewey-raw | 005.2762 |
dewey-search | 005.2762 |
dewey-sort | 15.2762 |
dewey-tens | 000 - Computer science, information, general works |
discipline | Informatik |
discipline_str_mv | Informatik |
edition | 7th ed., internat. ed. |
format | Book |
fullrecord | <?xml version="1.0" encoding="UTF-8"?><collection xmlns="http://www.loc.gov/MARC21/slim"><record><leader>01840nam a2200457 c 4500</leader><controlfield tag="001">BV035153386</controlfield><controlfield tag="003">DE-604</controlfield><controlfield tag="005">20081215 </controlfield><controlfield tag="007">t</controlfield><controlfield tag="008">081111s2009 a||| |||| 00||| eng d</controlfield><datafield tag="020" ind1=" " ind2=" "><subfield code="a">9780138146269</subfield><subfield code="9">978-0-13-814626-9</subfield></datafield><datafield tag="020" ind1=" " ind2=" "><subfield code="a">0138146268</subfield><subfield code="9">0-13-814626-8</subfield></datafield><datafield tag="020" ind1=" " ind2=" "><subfield code="a">9780138146269</subfield><subfield code="9">978-0-13-814626-9</subfield></datafield><datafield tag="035" ind1=" " ind2=" "><subfield code="a">(OCoLC)248983417</subfield></datafield><datafield tag="035" ind1=" " ind2=" "><subfield code="a">(DE-599)BVBBV035153386</subfield></datafield><datafield tag="040" ind1=" " ind2=" "><subfield code="a">DE-604</subfield><subfield code="b">ger</subfield><subfield code="e">rakwb</subfield></datafield><datafield tag="041" ind1="0" ind2=" "><subfield code="a">eng</subfield></datafield><datafield tag="049" ind1=" " ind2=" "><subfield code="a">DE-703</subfield></datafield><datafield tag="082" ind1="0" ind2=" "><subfield code="a">005.2762</subfield><subfield code="2">22</subfield></datafield><datafield tag="084" ind1=" " ind2=" "><subfield code="a">ST 250</subfield><subfield code="0">(DE-625)143626:</subfield><subfield code="2">rvk</subfield></datafield><datafield tag="100" ind1="1" ind2=" "><subfield code="a">Liang, Y. Daniel</subfield><subfield code="e">Verfasser</subfield><subfield code="4">aut</subfield></datafield><datafield tag="245" ind1="1" ind2="0"><subfield code="a">Introduction to Java programming</subfield><subfield code="b">brief version</subfield><subfield code="c">Y. Daniel Liang</subfield></datafield><datafield tag="250" ind1=" " ind2=" "><subfield code="a">7th ed., internat. ed.</subfield></datafield><datafield tag="264" ind1=" " ind2="1"><subfield code="a">Upper Saddle River, NJ</subfield><subfield code="b">Pearson Prentice Hall</subfield><subfield code="c">2009</subfield></datafield><datafield tag="300" ind1=" " ind2=" "><subfield code="a">733 S.</subfield><subfield code="b">Ill.</subfield></datafield><datafield tag="336" ind1=" " ind2=" "><subfield code="b">txt</subfield><subfield code="2">rdacontent</subfield></datafield><datafield tag="337" ind1=" " ind2=" "><subfield code="b">n</subfield><subfield code="2">rdamedia</subfield></datafield><datafield tag="338" ind1=" " ind2=" "><subfield code="b">nc</subfield><subfield code="2">rdacarrier</subfield></datafield><datafield tag="650" ind1=" " ind2="4"><subfield code="a">Java (Computer program language)</subfield></datafield><datafield tag="650" ind1=" " ind2="4"><subfield code="a">Java (Computer program language)</subfield></datafield><datafield tag="650" ind1="0" ind2="7"><subfield code="a">Java Standard Edition 8</subfield><subfield code="0">(DE-588)1049861094</subfield><subfield code="2">gnd</subfield><subfield code="9">rswk-swf</subfield></datafield><datafield tag="650" ind1="0" ind2="7"><subfield code="a">Java Standard Edition 7</subfield><subfield code="0">(DE-588)7751205-4</subfield><subfield code="2">gnd</subfield><subfield code="9">rswk-swf</subfield></datafield><datafield tag="650" ind1="0" ind2="7"><subfield code="a">Java</subfield><subfield code="g">Programmiersprache</subfield><subfield code="0">(DE-588)4401313-9</subfield><subfield code="2">gnd</subfield><subfield code="9">rswk-swf</subfield></datafield><datafield tag="689" ind1="0" ind2="0"><subfield code="a">Java</subfield><subfield code="g">Programmiersprache</subfield><subfield code="0">(DE-588)4401313-9</subfield><subfield code="D">s</subfield></datafield><datafield tag="689" ind1="0" ind2=" "><subfield code="5">DE-604</subfield></datafield><datafield tag="689" ind1="1" ind2="0"><subfield code="a">Java Standard Edition 7</subfield><subfield code="0">(DE-588)7751205-4</subfield><subfield code="D">s</subfield></datafield><datafield tag="689" ind1="1" ind2="1"><subfield code="a">Java Standard Edition 8</subfield><subfield code="0">(DE-588)1049861094</subfield><subfield code="D">s</subfield></datafield><datafield tag="689" ind1="1" ind2=" "><subfield code="8">1\p</subfield><subfield code="5">DE-604</subfield></datafield><datafield tag="856" ind1="4" ind2="2"><subfield code="m">Digitalisierung UB Bayreuth</subfield><subfield code="q">application/pdf</subfield><subfield code="u">http://bvbr.bib-bvb.de:8991/F?func=service&doc_library=BVB01&local_base=BVB01&doc_number=016960602&sequence=000002&line_number=0001&func_code=DB_RECORDS&service_type=MEDIA</subfield><subfield code="3">Inhaltsverzeichnis</subfield></datafield><datafield tag="999" ind1=" " ind2=" "><subfield code="a">oai:aleph.bib-bvb.de:BVB01-016960602</subfield></datafield><datafield tag="883" ind1="1" ind2=" "><subfield code="8">1\p</subfield><subfield code="a">cgwrk</subfield><subfield code="d">20201028</subfield><subfield code="q">DE-101</subfield><subfield code="u">https://d-nb.info/provenance/plan#cgwrk</subfield></datafield></record></collection> |
id | DE-604.BV035153386 |
illustrated | Illustrated |
index_date | 2024-07-02T22:47:36Z |
indexdate | 2024-07-09T21:26:11Z |
institution | BVB |
isbn | 9780138146269 0138146268 |
language | English |
oai_aleph_id | oai:aleph.bib-bvb.de:BVB01-016960602 |
oclc_num | 248983417 |
open_access_boolean | |
owner | DE-703 |
owner_facet | DE-703 |
physical | 733 S. Ill. |
publishDate | 2009 |
publishDateSearch | 2009 |
publishDateSort | 2009 |
publisher | Pearson Prentice Hall |
record_format | marc |
spelling | Liang, Y. Daniel Verfasser aut Introduction to Java programming brief version Y. Daniel Liang 7th ed., internat. ed. Upper Saddle River, NJ Pearson Prentice Hall 2009 733 S. Ill. txt rdacontent n rdamedia nc rdacarrier Java (Computer program language) Java Standard Edition 8 (DE-588)1049861094 gnd rswk-swf Java Standard Edition 7 (DE-588)7751205-4 gnd rswk-swf Java Programmiersprache (DE-588)4401313-9 gnd rswk-swf Java Programmiersprache (DE-588)4401313-9 s DE-604 Java Standard Edition 7 (DE-588)7751205-4 s Java Standard Edition 8 (DE-588)1049861094 s 1\p DE-604 Digitalisierung UB Bayreuth application/pdf http://bvbr.bib-bvb.de:8991/F?func=service&doc_library=BVB01&local_base=BVB01&doc_number=016960602&sequence=000002&line_number=0001&func_code=DB_RECORDS&service_type=MEDIA Inhaltsverzeichnis 1\p cgwrk 20201028 DE-101 https://d-nb.info/provenance/plan#cgwrk |
spellingShingle | Liang, Y. Daniel Introduction to Java programming brief version Java (Computer program language) Java Standard Edition 8 (DE-588)1049861094 gnd Java Standard Edition 7 (DE-588)7751205-4 gnd Java Programmiersprache (DE-588)4401313-9 gnd |
subject_GND | (DE-588)1049861094 (DE-588)7751205-4 (DE-588)4401313-9 |
title | Introduction to Java programming brief version |
title_auth | Introduction to Java programming brief version |
title_exact_search | Introduction to Java programming brief version |
title_exact_search_txtP | Introduction to Java programming brief version |
title_full | Introduction to Java programming brief version Y. Daniel Liang |
title_fullStr | Introduction to Java programming brief version Y. Daniel Liang |
title_full_unstemmed | Introduction to Java programming brief version Y. Daniel Liang |
title_short | Introduction to Java programming |
title_sort | introduction to java programming brief version |
title_sub | brief version |
topic | Java (Computer program language) Java Standard Edition 8 (DE-588)1049861094 gnd Java Standard Edition 7 (DE-588)7751205-4 gnd Java Programmiersprache (DE-588)4401313-9 gnd |
topic_facet | Java (Computer program language) Java Standard Edition 8 Java Standard Edition 7 Java Programmiersprache |
url | http://bvbr.bib-bvb.de:8991/F?func=service&doc_library=BVB01&local_base=BVB01&doc_number=016960602&sequence=000002&line_number=0001&func_code=DB_RECORDS&service_type=MEDIA |
work_keys_str_mv | AT liangydaniel introductiontojavaprogrammingbriefversion |