Think Java

Think Java

Author: Allen B. Downey

Publisher: "O'Reilly Media, Inc."

Published: 2016-05-06

Total Pages: 251

ISBN-13: 1491929537

DOWNLOAD EBOOK

Currently used at many colleges, universities, and high schools, this hands-on introduction to computer science is ideal for people with little or no programming experience. The goal of this concise book is not just to teach you Java, but to help you think like a computer scientist. You’ll learn how to program—a useful skill by itself—but you’ll also discover how to use programming as a means to an end. Authors Allen Downey and Chris Mayfield start with the most basic concepts and gradually move into topics that are more complex, such as recursion and object-oriented programming. Each brief chapter covers the material for one week of a college course and includes exercises to help you practice what you’ve learned. Learn one concept at a time: tackle complex topics in a series of small steps with examples Understand how to formulate problems, think creatively about solutions, and write programs clearly and accurately Determine which development techniques work best for you, and practice the important skill of debugging Learn relationships among input and output, decisions and loops, classes and methods, strings and arrays Work on exercises involving word games, graphics, puzzles, and playing cards


Java Methods for Financial Engineering

Java Methods for Financial Engineering

Author: Philip Barker

Publisher: Springer Science & Business Media

Published: 2007-05-16

Total Pages: 562

ISBN-13: 1846287413

DOWNLOAD EBOOK

This book describes the principles of model building in financial engineering. It explains those models as designs and working implementations for Java-based applications. The book provides software professionals with an accessible source of numerical methods or ready-to-use code for use in business applications. It is the first book to cover the topic of Java implementations for finance/investment applications and is written specifically to be accessible to software practitioners without prior accountancy/finance training. The book develops a series of packaged classes explained and designed to allow the financial engineer complete flexibility.


Learning Java

Learning Java

Author: Patrick Niemeyer

Publisher: "O'Reilly Media, Inc."

Published: 2002

Total Pages: 836

ISBN-13: 9780596002855

DOWNLOAD EBOOK

This updated edition introduces the basics of Java and everything necessary to get up to speed on the new 1.4 version quickly. CD contains the Java 2 SDK for Windows, Linux and Solaris.


Formal Methods for Components and Objects

Formal Methods for Components and Objects

Author: Elena Giachino

Publisher: Springer

Published: 2013-08-23

Total Pages: 247

ISBN-13: 3642406157

DOWNLOAD EBOOK

This book constitutes revised lectures from the 11th Symposium on Formal Methods for Components and Object, FMCO 2012, held in Bertinoro, Italy, in September 2012. The 8 lectures featured in this volume are by world-renowned experts within the area of formal models for objects and components. The book provides a unique combination of ideas on software engineering and formal methods which reflect the expanding body of knowledge on modern software systems.


Rigorous Methods for Software Construction and Analysis

Rigorous Methods for Software Construction and Analysis

Author: Jean-Raymond Abrial

Publisher: Springer Science & Business Media

Published: 2009

Total Pages: 248

ISBN-13: 3642114466

DOWNLOAD EBOOK

This Festschrift volume, published in honor of Egon Börger, contains 14 papers from a Dagstuhl Seminar, which was organized as a "Festkolloquium" on the occasion of his 60th birthday in May 2006. Focusing on applied formal methods, the volume covers a wide range of applied research, spanning from theoretical and methodological foundations to practical applications of Abstract State Machines, B, and beyond, emphasizing universal methods and tools that, regardless of their applicational orientation, are still committed to the ideal of mathematical rigor. In particular, the papers address the following central topics: methodological foundations of requirements specification and verification, characterization of specification languages and their logical foundations, advanced tool environments and systematic integration of tools, machine assisted validation and verification, distributed algorithms and concurrent protocols, novel applications in public safety, security and privacy, industrial case studies and experience reports, and the role of formal methods in computer science education.


Scripting in Java

Scripting in Java

Author: Kishori Sharan

Publisher: Apress

Published: 2014-12-09

Total Pages: 372

ISBN-13: 1484207130

DOWNLOAD EBOOK

Scripting in Java teaches you how to use the Java Scripting API and JavaScript to execute scripts and take advantage of the features of a scripting language while developing Java applications. The book also covers topics that enable scripting languages to take advantage of Java features and the Java class library, including the new Java Collections and JavaFX 8 APIs. Most of the examples in this book use JavaScript on the Nashorn engine. Author Kishori Sharan will show you scripts in JavaScript to demonstrate its power and use in your Java applications. Some of the examples use the jrunscript and jjs command-line tools. Furthermore, debugging is discussed to equip you for situations when or if you encounter any issues with this kind of Java scripting. After reading and using this book, you will have most of what you need to do scripting in Java.


JavaTech, an Introduction to Scientific and Technical Computing with Java

JavaTech, an Introduction to Scientific and Technical Computing with Java

Author: Clark S. Lindsey

Publisher: Cambridge University Press

Published: 2005-10-13

Total Pages: 736

ISBN-13: 9780521821131

DOWNLOAD EBOOK

"JavaTech demonstrates the ease with which Java can be used to create powerful network applications and distributed computing applications. It can be used as a textbook for introductory or intermediate level programming courses, and for more advanced students and researchers who need to learn Java for a particular task. JavaTech is up to date with Java 5.0."--BOOK JACKET.


An Introduction to Network Programming with Java

An Introduction to Network Programming with Java

Author: Jan Graba

Publisher: Springer Science & Business Media

Published: 2013-08-13

Total Pages: 389

ISBN-13: 1447152549

DOWNLOAD EBOOK

Since the second edition of this text, the use of the Internet and networks generally has continued to expand at a phenomenal rate. This has led to both an increase in demand for network software and to improvements in the technology used to run such networks, with the latter naturally leading to changes in the former. During this time, the Java libraries have been updated to keep up with the new developments in network technology, so that the Java programming language continues to be one of the mainstays of network software development. In providing a very readable text that avoids getting immersed in low-level technical details, while still providing a useful, practical guide to network programming for both undergraduates and busy IT professionals, this third edition continues the trend of its predecessors. To retain its currency, the text has been updated to reflect changes that have taken place in Java's network technology over the past seven years (including the release of Java 7), whilst retaining its notable features of numerous code examples, screenshots and end-of-chapter exercises.


Effective Java

Effective Java

Author: Joshua Bloch

Publisher: Addison-Wesley Professional

Published: 2008-05-08

Total Pages: 375

ISBN-13: 0132778041

DOWNLOAD EBOOK

Are you looking for a deeper understanding of the JavaTM programming language so that you can write code that is clearer, more correct, more robust, and more reusable? Look no further! Effective JavaTM, Second Edition, brings together seventy-eight indispensable programmer’s rules of thumb: working, best-practice solutions for the programming challenges you encounter every day. This highly anticipated new edition of the classic, Jolt Award-winning work has been thoroughly updated to cover Java SE 5 and Java SE 6 features introduced since the first edition. Bloch explores new design patterns and language idioms, showing you how to make the most of features ranging from generics to enums, annotations to autoboxing. Each chapter in the book consists of several “items” presented in the form of a short, standalone essay that provides specific advice, insight into Java platform subtleties, and outstanding code examples. The comprehensive descriptions and explanations for each item illuminate what to do, what not to do, and why. Highlights include: New coverage of generics, enums, annotations, autoboxing, the for-each loop, varargs, concurrency utilities, and much more Updated techniques and best practices on classic topics, including objects, classes, libraries, methods, and serialization How to avoid the traps and pitfalls of commonly misunderstood subtleties of the language Focus on the language and its most fundamental libraries: java.lang, java.util, and, to a lesser extent, java.util.concurrent and java.io Simply put, Effective JavaTM, Second Edition, presents the most practical, authoritative guidelines available for writing efficient, well-designed programs.