|
|
|
|
LEADER |
00000cam a2200000Ia 4500 |
001 |
OR_ocn697276809 |
003 |
OCoLC |
005 |
20231017213018.0 |
006 |
m o d |
007 |
cr cn||||||||| |
008 |
110118s2009 nyua o 001 0 eng d |
040 |
|
|
|a GW5XE
|b eng
|e pn
|c GW5XE
|d CUS
|d CEF
|d E7B
|d NLGGC
|d OCLCQ
|d YDXCP
|d N$T
|d OCLCQ
|d OCLCF
|d BEDGE
|d UMI
|d VLB
|d CDX
|d IDEBK
|d COO
|d B24X7
|d DEBSZ
|d OCLCQ
|d SNK
|d A7U
|d TXI
|d AZK
|d CNCGM
|d OCLCQ
|d UAB
|d ESU
|d VT2
|d OCLCQ
|d IOG
|d U3W
|d OCLCQ
|d OCLCO
|d OCLCQ
|
019 |
|
|
|a 654807290
|a 743406827
|a 765144268
|a 777151667
|a 816835808
|a 957523816
|a 957600465
|a 961501516
|a 987643925
|a 987645290
|a 987750941
|a 1005804352
|a 1044319198
|a 1056440598
|a 1060871899
|a 1069580894
|a 1074269366
|a 1087224185
|a 1256339286
|
020 |
|
|
|a 9781430225287
|q (electronic bk.)
|
020 |
|
|
|a 1430225289
|q (electronic bk.)
|
020 |
|
|
|a 1430225270
|
020 |
|
|
|a 9781430225270
|
020 |
|
|
|a 1283075075
|
020 |
|
|
|a 9781283075077
|
020 |
|
|
|a 9786613075079
|
020 |
|
|
|a 6613075078
|
024 |
7 |
|
|a 10.1007/978-1-4302-2528-7
|2 doi
|
029 |
1 |
|
|a AU@
|b 000048774583
|
029 |
1 |
|
|a AU@
|b 000053271688
|
029 |
1 |
|
|a DEBSZ
|b 355435470
|
029 |
1 |
|
|a HEBIS
|b 291506364
|
029 |
1 |
|
|a NZ1
|b 13778268
|
035 |
|
|
|a (OCoLC)697276809
|z (OCoLC)654807290
|z (OCoLC)743406827
|z (OCoLC)765144268
|z (OCoLC)777151667
|z (OCoLC)816835808
|z (OCoLC)957523816
|z (OCoLC)957600465
|z (OCoLC)961501516
|z (OCoLC)987643925
|z (OCoLC)987645290
|z (OCoLC)987750941
|z (OCoLC)1005804352
|z (OCoLC)1044319198
|z (OCoLC)1056440598
|z (OCoLC)1060871899
|z (OCoLC)1069580894
|z (OCoLC)1074269366
|z (OCoLC)1087224185
|z (OCoLC)1256339286
|
037 |
|
|
|a CL0500000073
|b Safari Books Online
|
050 |
|
4 |
|a QA76.73.J98
|b J85 2009
|
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 Juneau, Josh.
|
245 |
1 |
4 |
|a The definitive guide to Jython :
|b Python for the Java platform /
|c Josh Juneau [and others].
|
260 |
|
|
|a [New York] :
|b Apress ;
|a New York :
|b Distributed by Springer-Verlag,
|c 2009.
|
300 |
|
|
|a 1 online resource (xxvii, 511 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 data file
|
490 |
1 |
|
|a The expert's voice in software development
|
505 |
0 |
|
|a Cover -- Contents -- Foreword -- About the Authors -- About the Technical Reviewers -- Acknowledgments -- Introduction -- Part 1 Jython Basics: Learning the Language -- Chapter 1 Language and Syntax -- The Difference Between Jython and Python -- Installing and Configuring Jython -- Identifiers and Declaring Variables -- Reserved Words -- Coding Structure -- Operators -- Expressions -- Functions -- Classes -- Statements -- Iteration -- Basic Keyboard Input -- Other Python Statements -- Documenting Code -- Python Help -- Summary -- Chapter 2 Data Types and Referencing -- Python Data Types -- Summary -- Chapter 3 Operators, Expressions, and Program Flow -- Types of Expressions -- Mathematical Operations -- Using Expressions to Control Program Flow -- Summary -- Chapter 4 Defining Functions and Using Built-Ins -- Function Syntax and Basics -- Miscellaneous Information for the Curious Reader -- Built-in Functions -- Alternative Ways to Define Functions -- Generator Functions -- Namespaces, Nested Scopes, and Closures -- Function Decorators -- Coroutines -- Summary -- Chapter 5 Input and Output -- Input From the Keyboard -- File I/0 -- Pickle -- Summary -- Chapter 6 Object-Oriented Jython -- Basic Syntax -- Object Attribute Lookups -- Inheritance and Overloading -- Underscore Methods -- Protocols -- Default Arguments -- Runtime Binding of Methods -- Caching Attribute Access -- Summary -- Chapter 7 Exception Handling and Debugging -- Exception Handling Syntax and Differences With Java -- Defining Your Own Exceptions -- Issuing Warnings -- Assertions and Debugging -- Context Managers -- Summary -- Chapter 8 Modules and Packages for Code Reuse -- Imports for Reuse -- An Example Program -- Types of Import Statements -- Module Search Path, Compilation, and Loading -- Java Package Scanning -- Python Modules and Packages Versus Java Packages -- Advanced Import Manipulation -- Summary -- Part II Using the Language -- Chapter 9 Scripting With Jython -- Searching for a File -- Manipulating Files -- Making a Script a Module -- Parsing Commandline Options -- Compiling Java Source -- Example Script: Builder. Py -- Helloworld. Java -- Summary -- Chapter 10 Jython and Java Integration -- Using Java Within Jython Applications -- Using Jython Within Java Applications -- Summary -- Chapter 11 Using Jython in An Ide -- Eclipse -- Debugging -- Netbeans -- Ide Installation and Configuration -- Advanced Python Options -- General Python Usage -- Standalone Jython Apps -- Jython and Java Integrated Apps -- The Netbeans Python Debugger -- Other Netbeans Python Features -- Summary -- Chapter 12 Databases and Jython: Object Relational Mappingand Using Jdbc -- ZxjdbcUsing Pythons Db Api Via Jdbc -- Object Relational Mapping -- T$3075.
|
520 |
|
|
|a "The Definitive Guide to Jython is organized for beginners as well as advanced users of the language. The book provides a general overview of the Jython language itself, but it also includes intermediate and advanced topics regarding database, web, and GUI applications; Web services/SOA; and integration, concurrency, and parallelism, to name a few"--Resource description page
|
590 |
|
|
|a O'Reilly
|b O'Reilly Online Learning: Academic/Public Library Edition
|
650 |
|
0 |
|a Jython (Computer program language)
|
650 |
|
0 |
|a Object-oriented programming (Computer science)
|
650 |
|
0 |
|a Python (Computer program language)
|
650 |
|
0 |
|a Java (Computer program language)
|
650 |
|
6 |
|a Jython (Langage de programmation)
|
650 |
|
6 |
|a Programmation orientée objet (Informatique)
|
650 |
|
6 |
|a Python (Langage de programmation)
|
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 Jython (Computer program language)
|2 blmlsh
|
650 |
|
7 |
|a Object-oriented programming (Computer science)
|2 blmlsh
|
650 |
|
7 |
|a Python (Computer program language)
|2 blmlsh
|
650 |
|
7 |
|a Java (Computer program language)
|2 blmlsh
|
650 |
|
7 |
|a Informatique.
|2 eclas
|
650 |
|
7 |
|a Java (Computer program language)
|2 fast
|0 (OCoLC)fst00982065
|
650 |
|
7 |
|a Jython (Computer program language)
|2 fast
|0 (OCoLC)fst00985518
|
650 |
|
7 |
|a Object-oriented programming (Computer science)
|2 fast
|0 (OCoLC)fst01042804
|
650 |
|
7 |
|a Python (Computer program language)
|2 fast
|0 (OCoLC)fst01084736
|
776 |
0 |
8 |
|i Print version:
|a Juneau, Josh.
|t Definitive guide to Jython.
|d [New York] : Apress ; New York : distributed by Springer-Verlag, 2009
|z 9781430225270
|w (OCoLC)419873855
|
830 |
|
0 |
|a Expert's voice in software development.
|
856 |
4 |
0 |
|u https://learning.oreilly.com/library/view/~/9781430225270/?ar
|z Texto completo (Requiere registro previo con correo institucional)
|
938 |
|
|
|a Books 24x7
|b B247
|n bks00042545
|
938 |
|
|
|a Coutts Information Services
|b COUT
|n 17823930
|
938 |
|
|
|a ebrary
|b EBRY
|n ebr10439920
|
938 |
|
|
|a EBSCOhost
|b EBSC
|n 373580
|
938 |
|
|
|a ProQuest MyiLibrary Digital eBook Collection
|b IDEB
|n 307507
|
938 |
|
|
|a YBP Library Services
|b YANK
|n 3585999
|
994 |
|
|
|a 92
|b IZTAP
|