current location:Home > Technical Articles > Java
- Direction:
- All web3.0 Backend Development Web Front-end Database Operation and Maintenance Development Tools PHP Framework Daily Programming WeChat Applet Common Problem Other Tech CMS Tutorial Java System Tutorial Computer Tutorials Hardware Tutorial Mobile Tutorial Software Tutorial Mobile Game Tutorial
- Classify:
-
- Applying the Single Responsibility Principle with Typescript and Java
- Concepts SOLID is an acronym that represents five fundamental principles of object-oriented programming, proposed by Robert C. Martin - Uncle Bob. Here you can read more about his article. These principles aim to improve
- javaTutorial 109 2024-08-19 06:43:42
-
- Understanding Waits in Selenium 4
- In this post, we’ll explore the different types of waits in Selenium 4, including new improvements and best practices for their usage. Types of Waits in Selenium 4 Selenium 4 provides three main types of waits: Implicit Waits Explicit Waits Fluent
- javaTutorial 707 2024-08-19 06:06:32
-
- Presentation pain
- I want to tell about one thing that struggle me every time when I need to do it. It is preparing presentation. In general, I prepare presentation in PowerPoint, once I tried to do it with slick_slides by Viktor Lidholt. How place images with differ
- javaTutorial 565 2024-08-19 06:01:06
-
- Deep Dive into Java Exceptions
- Java Core Exception Class hierarchy of exception classes: Throwable < Error < Exception where the Throwable is the superclass Throwable The Throwable class is the superclass of all errors and exceptions in the Java language. O
- javaTutorial 355 2024-08-19 06:01:02
-
- What are some essential Java libraries every programmer should know?
- What are some essential Java libraries every programmer should know? In order to make good software quickly as a Java coder, you need to know how to use the important tools. They give you methods, classes, and tools that have already been made. They
- javaTutorial 210 2024-08-17 20:31:07
-
- Exploring Java Record Patterns and Pattern Matching
- Java record patterns were introduced in Java 16 as part of Project Amber and are enhanced in Java 21 with the addition of deconstructors and pattern matching. This feature allows for a more concise and flexible way of handling data in Java applicatio
- javaTutorial 690 2024-08-17 19:04:31
-
- Building Scalable Microservices with Java Spring Boot: Best Practices and Techniques part -1
- Monolith Architecture If we develop all the functionalities in single project then it is called as Monolith architecture based application. We will package our application as a jar/war to deploy into server. As monolith application contains al
- javaTutorial 648 2024-08-17 18:51:32
-
- Shift operators and bitwise shorthand assignments
- 1. Bit Shift Operators : Shift to the right. >>>: Unsigned right shift (zero-padded). 2. General Syntax of Shift Operators value
- javaTutorial 212 2024-08-17 18:48:32
-
- Ways of communication between services in a Microservice system
- 1. Synchronous Communication Synchronous communication involves a real-time interaction where one service sends a request to another and pauses its operation until a response is received. REST APIs and gRPC are common protocols used to facilita
- javaTutorial 439 2024-08-17 18:48:15
-
- Code Refactoring: Best Practices for Writing Clean, Efficient Code
- Introduction Code refactoring is an essential process for any developer looking to improve the quality of their work. Over time, software projects can accumulate complexity and technical debt, making the code difficult to implement.
- javaTutorial 717 2024-08-17 18:36:05
-
- Try This A ShowBits Class
- This project creates a class called ShowBits that allows you to Display the bit pattern of any integer value in binary. A class like this can be very useful in programming. For example, when debugging device driver code, you often
- javaTutorial 545 2024-08-17 18:33:32
-
- Java - Beginner
- 1: Introduction to Java Java is a powerful, object-oriented programming language that has been a cornerstone in the software industry since its creation in the mid-1990s. Developed by Sun Microsystems, Java’s primary goal was to create a language th
- javaTutorial 492 2024-08-17 18:33:09
-
- Os operadores bitwise AND, OR, XOR e NOT
- 1. Introduction to Bitwise Operators Bitwise operators operate on types such as long, int, short, char, and byte. Cannot be used with boolean, float, double or class types. Used to test, set, or shift individual bits in a value.
- javaTutorial 257 2024-08-17 18:32:41
-
- Streams and Lambdas in Java: A Guide to Functional Programming with Examples
- Functional programming is a widely used approach in modern software development. Java, being a language that supports both object-oriented and functional programming, introduced streams and lambdas in its 8th version. These features allow developers
- javaTutorial 380 2024-08-16 10:31:35
-
- Variables and Data Types in Java
- Variables and data types are fundamental concepts in any programming language, and in Java, this is no different. They form the basis for storing and manipulating data, allowing the programmer to perform operations in a
- javaTutorial 354 2024-08-16 06:55:21