diff options
author | Pratik Karki <predatoramigo@gmail.com> | 2017-10-07 09:11:44 +0545 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-07 09:11:44 +0545 |
commit | 973532a07958e553203684f9a5d769f4130d4912 (patch) | |
tree | d57d5d03b3db9c550466f42adc185eb4a560a6fb /java.html.markdown | |
parent | 64b1378b118dd3a0e1fb1730c3263b782c1d088f (diff) | |
parent | 7559305fb74cc9750a1d45ea24803257d27a8c88 (diff) |
Merge pull request #2890 from sridhareaswaran/patch-1
added use of break keyword & new tutorial link
Diffstat (limited to 'java.html.markdown')
-rw-r--r-- | java.html.markdown | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/java.html.markdown b/java.html.markdown index a8c2523c..7b59b085 100644 --- a/java.html.markdown +++ b/java.html.markdown @@ -418,6 +418,8 @@ public class LearnJava { // String class, and a few special classes that wrap primitive types: // Character, Byte, Short, and Integer. // Starting in Java 7 and above, we can also use the String type. + // Note: Do remember that, not adding "break" at end any particular case ends up in + // executing the very next case(given it satisfies the condition provided) as well. int month = 3; String monthString; switch (month) { @@ -886,6 +888,8 @@ The links provided here below are just to get an understanding of the topic, fee * [Codingbat.com](http://codingbat.com/java) +* [Codewars - Java Katas](https://www.codewars.com/?language=java) + **Books**: * [Head First Java](http://www.headfirstlabs.com/books/hfjava/) |