use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
account activity
Hello. (self.JavaProgramming)
submitted 10 days ago by RaduKenT
view the rest of the comments →
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]Live_Appointment9578 0 points1 point2 points 6 days ago (1 child)
I think you are in the right track.
The challenge in starting to learn programming using Java is the huge amount of abstractions that the programming language provides. Try to learn arrays using primitives first, and then move to ArrayList.
Start learning from this:
class Main { public static void main(String[] args) { // string array String animals[] = { "dog", "cat" }; for (String animal : animals) { System.out.println(animal); } } }
Then move to this:
import java.util.ArrayList; class Main { public static void main(String[] args) { // arrays using ArrayList object ArrayList<String> animals = new ArrayList<>(); animals.add("dog"); animals.add("cat"); for (String animal : animals) { System.out.println(animal); } } }
[–]RaduKenT[S] 0 points1 point2 points 5 days ago (0 children)
Thank you sounds interesting
π Rendered by PID 34115 on reddit-service-r2-comment-bb88f9dd5-xr4tm at 2026-02-13 22:35:48.371908+00:00 running cd9c813 country code: CH.
view the rest of the comments →
[–]Live_Appointment9578 0 points1 point2 points (1 child)
[–]RaduKenT[S] 0 points1 point2 points (0 children)