APPENDIX A

image

Review of Java Fundamentals

This appendix briefly reviews the core Java concepts that you should be familiar with to understand the material presented in this book. This is not a complete introduction to Java programming, so if any of the topics are unfamiliar, you may want to consult a textbook or tutorial series on Java1 to learn more about the corresponding material.

Data Types and Operators

Let’s begin by listing some of the basic, or primitive, data types available in Java:

  • * int: Integers (numbers with no decimal part)
  • * float: Decimal values
  • * double: Decimal values, stored with twice the precision of a float
  • * char: A single ...

Get Beginning Java Game Development with LibGDX now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.