SHOP.AGUARDIENTECLOTHING.COM Books > Computing > Java-Intensivkurs: In 14 Tagen lernen Projekte erfolgreich by Marco Block

Java-Intensivkurs: In 14 Tagen lernen Projekte erfolgreich by Marco Block

By Marco Block

Das Buch bietet eine verständliche, kompakte Einführung in die Softwareentwicklung mit Java. Es konzentriert sich dabei mehr auf Konzepte und Methoden als auf versionsspezifische Sprachelemente. Ziel ist die Motivation und Ausbildung zum Selbststudium. Die Konzepte werden durch die Realisierung von Projekten vermittelt. Dabei setzt dieses Buch auf kreative, neue Beispiele und streift durch verschiedene Gebiete der Informatik, wie z.B. Algorithmik, Künstliche Intelligenz, Bildverarbeitung und Spieleentwicklung. Am Ende jedes Kapitels werden die dargestellten Konzepte kurz zusammengefasst und durch praktische Aufgaben gefestigt. Die im Buch gezeigten Beispiele, Lösungen der Aufgaben und zusätzliches fabric werden auf einer Webseite angeboten. Die zweite Auflage ist durchgehend aktualisiert.

Show description

Read Online or Download Java-Intensivkurs: In 14 Tagen lernen Projekte erfolgreich zu realisieren (Xpert.press) (German Edition) PDF

Similar computing books

Grid Computing The New Frontier of High Performance Computing

The e-book bargains with the newest expertise of allotted computing. As web maintains to develop and supply useful connectivity among clients of desktops it has develop into attainable to contemplate use of computing assets that are a long way aside and hooked up by means of broad region Networks. rather than utilizing purely neighborhood computing energy it has develop into sensible to entry computing assets generally dispensed.

Simply computing for seniors

Step by step directions for seniors to wake up and operating on a house PCAnswering the decision for an up to date, effortless computing device consultant unique particularly for seniors, this beneficial e-book contains easy-to-follow tutorials that escort you thru the fundamentals and exhibits you ways to get the main from your laptop.

Soft Computing in Industrial Applications: Proceedings of the 17th Online World Conference on Soft Computing in Industrial Applications

This quantity of Advances in clever structures and Computing includes accredited papers offered at WSC17, the seventeenth on-line global convention on delicate Computing in commercial functions, held from December 2012 to January 2013 on the web. WSC17 keeps a profitable sequence of clinical occasions began over a decade in the past through the area Federation of sentimental Computing.

Distributed Computing and Artificial Intelligence, 13th International Conference

The thirteenth foreign Symposium on allotted Computing and synthetic Intelligence 2016 (DCAI 2016) is a discussion board to provide functions of cutting edge suggestions for learning and fixing complicated difficulties. The trade of rules among scientists and technicians from either the tutorial and business area is vital to facilitate the improvement of structures that may meet the ever-increasing calls for of today’s society.

Extra resources for Java-Intensivkurs: In 14 Tagen lernen Projekte erfolgreich zu realisieren (Xpert.press) (German Edition)

Sample text

Schauen wir uns beispielsweise folgenden Programmteil an, den wir in einem der späteren Kapitel noch genauer besprechen werden: 1 2 3 4 5 6 7 8 9 10 p u b l i c s t a t i c i n t zaehleUmgebung ( b o o l e a n [ ] [ ] m, i n t x , i n t y ) { int r e t = 0; f o r ( i n t i = ( x −1 ); i < ( x + 2 ) ; + + i ) { f o r ( i n t j = ( y −1 ); j < ( y + 2 ) ; + + j ) { t r y { i f (m[ i ] [ j ] ) r e t += 1 ; } c a t c h ( I n d e x O u t O f B o u n d s E x c e p t i o n e ) { } } } / / einen z uv ie l mitgez aehlt?

Aus der Mathematik wissen wir, dass Funktionen auch ein Ergebnis liefern – genau ein Ergebnis. Auch für unsere Funktionen gilt das. Falls, wie in unserem Fall, kein Rückgabewert existiert, schreiben wir als Rückgabewert das Schlüsselwort void. public static Funktionsname (Parameter) { // Funktionskörper } In den vielen vorhergehenden Beispielen haben wir oft die main-Funktion verwendet, die nur einmal vorhanden ist und mit z. B. java Ausgabe genau einmal aufgerufen wird. Jetzt wollen wir versuchen, mit Hilfe einer Funktion, die Ausgabe ein wenig zu erleichtern.

Zwei oder mehrere Abschnitte sollen parallel abgearbeitet werden Zwei Striche auf den Verzweigungspfeilen sollen bedeuten, dass die beiden Wege gleichzeitig bearbeitet werden sollen und sich später wieder treffen können. Das Stichwort in diesem Zusammenhang ist Thread und wird in einem der späteren Kapitel wieder auftauchen. 6 Kombination zu Programmen Die vorgestellten Methoden können nun beliebig kompliziert verknüpft werden und ergeben in ihrer Kombination schließlich ein Programm. Als Beispiel für ein Programm wollen wir nun nochmal das Eierpfannkuchen-Rezept nehmen (siehe Abb.

Download PDF sample

Rated 4.45 of 5 – based on 10 votes