Skip to content

Latest commit

 

History

History
75 lines (57 loc) · 4.01 KB

readings.md

File metadata and controls

75 lines (57 loc) · 4.01 KB

A list of articles, blogs and books you might find useful 👍

Table of Contents

Start here

1. Always override hashCode when you override equals


2. Java Arrays


3. Java String


4. Common data structure


5. UML


6. Primitive type & Reference type


7. Terminate a function VS Terminate the program


  • return; statement is used inside a method to come out of it. It returns from the function to its caller and the program continues running.
  • System.exit(); terminates the program; control does not return to the caller.
    • System.exit(0) is used in any method to come out of program. System.exit(0) terminates the program normally.
    • Whereas System.exit(1) terminates the program because of some error encountered in the program.

Author


The reading list is collected by Chuang Wang, tutor for COMP90041 Semester2 2019
Chuang Wang LinkedIn:https://www.linkedin.com/in/chuangw

Notes


Feedbacks and comments are more than welcome!
Please contact the author: [email protected]
Thanks a lot!

License


MIT