One of the oldest coding practice is to keep line width 80, and many of us follow it blindly but have you ever thought why we have this…
Category: dummyCategory
Explain how variable hiding is working in this Java code
Consider below codeclass A{ int x = 5; void foo() { System.out.println(this.x); }}class B extends A{ int x = 6; // some extra stuff}class C{ public static
Java 8 Stream API Examples
Hello Friends, in this post, we will discuss Java 8 Stream API Examples.So what we are going to …
JavaFX e o futuro das tecnologias Java Client
A Oracle removerá o JavaFX, Applets e o Java Web Start do SDK após o Java SE 8 mas o Swing e AWT continuarão.
3 Best Practices Java Programmers Can Learn From Spring Framework – DZone Java
See the lessons you can learn from Spring, including favoring unchecked exceptions over checked exceptions, coding for interfaces, and using Template Patterns.
FREE – Docker Course Made for Developers – LIMITED TIME!
Use Docker to streamline your developer workflow. Impress colleagues with your knowledge of Docker. All this and more! – Free Course
Jakarta EE – Not Your Parents’ Java EE | EclipseCon Europe 2018
Already we can see and feel that the development of “Java EE” after the contribution to Eclipse will be different from the past. We are seeing enthusiasm and participation from the various teams at an all-time high! But, what will be different after these contributions to EE4J (Eclipse Enterprise for Java) is complete? Come to this session to learn what’s changing, besides just the name… 🙂 I will give you an overview of the projects already transferred and what projects are left. I will also give an overview of the new and updated processes, as well a
The Java of your heart: Trends and preferences from JetBrains’ survey – JAXenter
The results of JetBrains’ State of Developer Ecosystem are here. This time we’re focusing solely on Java and what Java developers prefer to use these days.
Java Programming Basics | Udemy
Learn to program! Let’s walk through some simple examples and I’ll explain everything along the way. – Free Course
JDK 11: Beginning of the End for Java Serialization?
In the blog post ” Using Google’s Protocol Buffers with Java ,” I quoted Josh Bloch’s Third Edition of Effective Java , in which he wrote, …
Design Patterns in Java – Concepts & Hands On Projects
Learn 26 Design Patterns with hands on projects in Java
How to write a C like Sizeof function in Java
If you have just started learning Java and came from C background then you might have noticed some difference between Java and C programmin…
Java Is in Tents [Infographic] – DZone Java
This overview of Java 8, Java 9, and Java 10 covers the basics of what they brought to developers as the release cadence grows more intense.
Top 10 Tricky Java interview questions and Answers
Some tricky Java Interview Questions for programmers. A question is tricky if you cannot answer by applying common sense and your previous knowledge. In order to answer these question s you need good knowledge of Java.
Gather Diagnostic Data from your Containerized Java Application on the fly
Ever tried to debug Java issues in Docker containers? How does one go about doing it? This article talks about one mechanism in Eclipse OpenJ9 that makes it a lot easier to obtain debug information…