Cargando…

Java quick syntax reference /

The Java 9 Quick Syntax Reference has been updated to now include aspects of Java 9 including modules, JShell and more. It is a condensed code and syntax reference to the Java programming language. It presents the essential Java syntax in a well-organized format that can be used as a handy reference...

Descripción completa

Detalles Bibliográficos
Clasificación:Libro Electrónico
Autor principal: Olsson, Mikael (Web programmer) (Autor)
Formato: Electrónico eBook
Idioma:Inglés
Publicado: [Berkeley, CA] : Apress, 2018.
Edición:Second edition.
Temas:
Acceso en línea:Texto completo (Requiere registro previo con correo institucional)

MARC

LEADER 00000cam a2200000 i 4500
001 OR_on1020790456
003 OCoLC
005 20231017213018.0
006 m o d
007 cr cnu---unuuu
008 180130s2018 cau o 001 0 eng d
040 |a N$T  |b eng  |e rda  |e pn  |c N$T  |d GW5XE  |d N$T  |d EBLCP  |d AZU  |d UAB  |d UPM  |d OCLCF  |d SNK  |d OCLCQ  |d COO  |d YDX  |d UMI  |d STF  |d TOH  |d CEF  |d KSU  |d VT2  |d U3W  |d OCLCQ  |d DEBBG  |d NAM  |d K6U  |d D6H  |d WYU  |d G3B  |d LVT  |d S9I  |d C6I  |d UKMGB  |d CAUOI  |d AUD  |d MERUC  |d MERER  |d LIV  |d LEAUB  |d OCLCQ  |d UKAHL  |d LQU  |d FVL  |d OCLCQ  |d LEATE  |d OCLCQ  |d BRF  |d OCLCO  |d OCLCQ  |d DST  |d OCLCO  |d COM  |d OCL  |d OCLCQ  |d OCLCO 
015 |a GBB8M4615  |2 bnb 
016 7 |a 019140152  |2 Uk 
019 |a 1021080575  |a 1021200895  |a 1027065068  |a 1028052197  |a 1048155596  |a 1066453002  |a 1081200835  |a 1086464511  |a 1103277053  |a 1105171518  |a 1105721075  |a 1122818554  |a 1300668812  |a 1303359651 
020 |a 9781484234419  |q (electronic bk.) 
020 |a 1484234413  |q (electronic bk.) 
020 |z 9781484234402  |q (print) 
020 |z 1484234405 
024 7 |a 10.1007/978-1-4842-3441-9  |2 doi 
027 |a SPRINTER 
029 1 |a AU@  |b 000061573756 
029 1 |a AU@  |b 000066231872 
029 1 |a CHNEW  |b 001033056 
029 1 |a CHVBK  |b 555521532 
029 1 |a GBVCP  |b 1016523394 
029 1 |a UKMGB  |b 019140152 
029 1 |a AU@  |b 000069032354 
035 |a (OCoLC)1020790456  |z (OCoLC)1021080575  |z (OCoLC)1021200895  |z (OCoLC)1027065068  |z (OCoLC)1028052197  |z (OCoLC)1048155596  |z (OCoLC)1066453002  |z (OCoLC)1081200835  |z (OCoLC)1086464511  |z (OCoLC)1103277053  |z (OCoLC)1105171518  |z (OCoLC)1105721075  |z (OCoLC)1122818554  |z (OCoLC)1300668812  |z (OCoLC)1303359651 
037 |a CL0500000945  |b Safari Books Online 
050 4 |a QA76.73.J38 
072 7 |a COM  |x 051280  |2 bisacsh 
072 7 |a UMX  |2 bicssc 
072 7 |a UMX  |2 thema 
082 0 4 |a 005.13/3  |2 23 
049 |a UAMI 
100 1 |a Olsson, Mikael  |c (Web programmer),  |e author. 
245 1 0 |a Java quick syntax reference /  |c Mikael Olsson. 
250 |a Second edition. 
264 1 |a [Berkeley, CA] :  |b Apress,  |c 2018. 
264 4 |c Ã2018 
300 |a 1 online resource 
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 
347 |b PDF 
588 0 |a Online resource; title from PDF title page (EBSCO, viewed February 2, 2018). 
500 |a Includes index. 
505 0 |a Intro; Table of Contents; About the Author; About the Technical Reviewer; Introduction; Chapter 1: Hello World; Installing; Creating a project; Hello World; Code hints; Chapter 2: Compile and Run; Running from the IDE; Running from a console window; Comments; Chapter 3: Variables; Data types; Declaring variables; Assigning variables; Using variables; Integer types; Floating-point types; Char type; Boolean type; Variable scope; Anonymous block; Chapter 4: Operators; Arithmetic operators; Assignment operators; Combined assignment operators; Increment and decrement operators. 
505 8 |a Comparison operators Logical operators; Bitwise operators; Operator precedence; Chapter 5: String; Combining strings; Escape characters; String compare; String Buffer class; Chapter 6: Arrays; Array declaration; Array allocation; Array assignment; Multi-dimensional arrays; Array List class; Chapter 7: Conditionals; If statement; Switch statement; Ternary operator; Chapter 8: Loops; While loop; Do while loop; For loop; For-each loop; Break and continue; Labeled block; Chapter 9: Methods; Defining methods; Calling methods; Method parameters; Return statement; Method overloading; Passing arguments. 
505 8 |a Chapter 10: Class Object creation; Accessing object members; Constructor; This keyword; Constructor overloading; Constructor chaining; Initial field values; Default constructor; Null; Default values; Garbage collector; Chapter 11: Static; Accessing static members; Static methods; Static fields; Static initialization blocks; Instance initialization blocks; Chapter 12: Inheritance; Object; Upcasting; Downcasting; Instanceof operator; Chapter 13: Overriding; Overriding members; Override annotation; Hiding members; Preventing method inheritance; Accessing overridden methods. 
505 8 |a Calling parent constructor; Chapter 14: Packages and Import; Accessing packages; Chapter 15: Access Levels; Private access; Package-private access; Protected access; Public access; Top-level access; Nested class access; Access level guideline; Chapter 16: Constants; Local constants; Constant fields; Constant method parameters; Compile-time and runtime constants; Constant guideline; Chapter 17: Interface; Interface members; Interface example; Functionality interface; Class interface; Interface classes; Interface methods; Chapter 18: Abstract; Abstract class example. 
505 8 |a Abstract classes and interfaces; Chapter 19: Enum; Enum class; Chapter 20: Exception Handling; Try-catch; Catch block; Finally block; Throwing exceptions; Checked and unchecked exceptions; Exception hierarchy; Chapter 21: Boxing and Unboxing; Autoboxing and autounboxing; Primitive and wrapper guideline; Chapter 22: Generics; Generic classes; Generic methods; Calling generic methods; Generic interfaces; Generic type parameters; Generic variable usages; Bounded type parameters; Generics and Object; Chapter 23: Lambda Expressions; Lambda objects; Lambda parameters; Index. 
520 |a The Java 9 Quick Syntax Reference has been updated to now include aspects of Java 9 including modules, JShell and more. It is a condensed code and syntax reference to the Java programming language. It presents the essential Java syntax in a well-organized format that can be used as a handy reference. You won?t find any technical jargon, bloated samples, drawn out history lessons or witty stories in this book. What you will find is a language reference that is concise, to the point and highly accessible. The book is packed with useful information and is a must-have for any Java programmer. What you'll learn: A concise reference to the Java 9 language syntax How to code with Java modules How to script with JShell How to box/unbox And more. 
590 |a O'Reilly  |b O'Reilly Online Learning: Academic/Public Library Edition 
650 0 |a Java (Computer program language) 
650 0 |a Computer programming. 
650 6 |a Java (Langage de programmation) 
650 6 |a Programmation (Informatique) 
650 7 |a computer programming.  |2 aat 
650 7 |a Computer programming  |x software development.  |2 bicssc 
650 7 |a Programming & scripting languages: general.  |2 bicssc 
650 7 |a COMPUTERS  |x Programming Languages  |x Java.  |2 bisacsh 
650 7 |a Computer programming  |2 fast 
650 7 |a Java (Computer program language)  |2 fast 
776 0 8 |i Printed edition:  |z 9781484234402 
856 4 0 |u https://learning.oreilly.com/library/view/~/9781484234419/?ar  |z Texto completo (Requiere registro previo con correo institucional) 
938 |a Askews and Holts Library Services  |b ASKH  |n AH34377553 
938 |a ProQuest Ebook Central  |b EBLB  |n EBL5247438 
938 |a EBSCOhost  |b EBSC  |n 1695532 
938 |a YBP Library Services  |b YANK  |n 15122863 
994 |a 92  |b IZTAP