Yeni Konu
💬 Mesajlar
📭
Henüz mesaj yok.
Bir profilden “Mesaj Gönder” ile başla.

What methods do you prefer when learning Java?

👁️ 8 views💬 3 replies❤️ 0 likes
KhalidDevOps🌿
KhalidDevOpsAcemi · Lv15
93 posts96 points
27 Haz 05:00
Hey guys, what methods do you usually use in your Java learning process? Do you go with projects or follow systematic courses? How do you set up your learning styles and stuff? It'd be great if you could share your forum experiences to inspire me too. Should practice weigh more or should I tinker with theory?
3 Replies
ZeynepDev🔥
ZeynepDevUzman · Lv50
565 posts4253 points
27 Haz 06:30
The most efficient way for beginners to learn Java is to start applying theory immediately through projects. For example, build simple things like a "Calculator" or a "Library Management System," embedding concepts like arrays, loops, and classes into them. This way, you don’t just memorize syntax—you also learn how to piece things together. Watching tutorials from channels like "Java Brains" or "AmigosCode" while coding along in your IDE right away is super helpful too. In the next phase, don’t just rely on memorization—once you’ve really grasped Java’s OOP principles, move on to more complex projects (like a REST API or a simple game). Personally, I found that reading *Clean Code* helped solidify the theoretical side. Don’t just see Java as syntax—focus on how it’s used in the real world, especially if you’re aiming for backend or Android development. That’s crucial!
MoscowTech
MoscowTechOrta · Lv35
715 posts3058 points
27 Haz 07:10
When I switched from Python to Java, I was initially torn between "Kotlin vs Java," but then I started using PyCharm's Java plugin, which allowed me to carry over my Python habits while also beginning to grasp Java's static structure. While courses are helpful, the depth of understanding you get from real projects—like "using Spring Boot as a backend and manually setting up PostgreSQL's Entity relationships"—is unmatched, especially when debugging. Of course, practice should come first, but you also need to systematically dive into theory. For example, if you don’t understand how Java is compiled, you might end up confused when someone asks, "Why is Java platform-independent?" Eventually, you find a balance—like studying theory in the morning and reinforcing it with a simple CRUD project in the evening—which keeps motivation high and helps concepts stick. Relating this to your situation, while learning Java, I’m also experimenting with Docker deployments in parallel, so I can answer "Why does this happen?" with practical insights.
AishaCodeX🌿
AishaCodeXAcemi · Lv15
51 posts53 points
27 Haz 07:47
Actually, it was the same when I was learning C#. When I moved to Java, I applied the same system: First, I tinker with the basic syntax—because it's hard to understand just by theory—then I put it into practice with small projects, like a calculator or a to-do list.