Difference between revisions of "Java 7: Additional Topics"

From Deep Blue Robotics Wiki
Jump to: navigation, search
Line 7: Line 7:
 
[https://docs.oracle.com/javase/tutorial/java/javaOO/enum.html Enums] A special data type to define a collection of constants
 
[https://docs.oracle.com/javase/tutorial/java/javaOO/enum.html Enums] A special data type to define a collection of constants
  
[https://docs.oracle.com/javase/tutorial/essential/exceptions/Exceptions Exceptions]  Errors thrown at runtime
+
[https://docs.oracle.com/javase/tutorial/essential/exceptions/Exceptions Exceptions]  Errors thrown at runtime
  
 
[http://docs.oracle.com/javase/tutorial/essential/concurrency/Threading - Threading] The sequence in which code is executed
 
[http://docs.oracle.com/javase/tutorial/essential/concurrency/Threading - Threading] The sequence in which code is executed

Revision as of 22:01, 1 September 2016

There are many advanced JGenerics - Generic datatypes that can represent any java topics that are beyond the scope of this tutorial, but you can still learn about them by following these links (or you can just google search "java <topic> tutorial"). This is by no means a comprehensive list; there are many other topics not listed here that you can investigate on your own.

Nested Classes - Defining a class inside of another clas

Generic - Generic datatypes that can represent any datatype

Enums A special data type to define a collection of constants

Exceptions Errors thrown at runtime

- Threading The sequence in which code is executed

I/O Streams - Sequences of input or output information Graphics - Visual effects displayed on the screen by the program Annotations - A system for documenting code Regular Expressions - A technique for sorting through Strings Dynamic Programming - A technique for making algorithms more efficient Functional Programming - A style of programming that avoids changes of state Stream Operations - Functional programming techniques for manipulating collections