current location:Home > Technical Articles > Java > JavaBase
- 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:
-
- How to determine whether char is a space in java
- The method to determine whether "char" is a space in "java" is: first save the string to be determined into a character array by calling the "toCharArray" method, and then use the "for" loop to determine the length of the character array, and judge by the length to determine whether "char" is a space.
- JavaBase 7189 2019-11-28 09:22:39
-
- What does this in java mean?
- This in java represents the class instance itself. Usage of this keyword: 1. This keyword can be used to reference instance variables of the current class. 2. You can use the this keyword to call methods of the current class. 3. The this() constructor can be used to call the constructor of the current class.
- JavaBase 11617 2019-11-28 09:20:41
-
- Detailed explanation of JAVA exceptions and exception handling
- An exception is something different from the norm, something different from normal, something wrong. In Java, situations that block the current method or scope are called exceptions. This article provides you with a detailed introduction to exceptions and exception handling methods in Java.
- JavaBase 2175 2019-11-27 17:39:20
-
- What are the commonly used methods in java arrays
- Commonly used methods in java arrays are: 1. binarySearch method; 2. sort method; 3. copyOf and copyOFRange methods; 4. arraycopy method. This article is recommended by the Java Quick Start column. Everyone is welcome to communicate and learn together.
- JavaBase 3332 2019-11-27 17:19:53
-
- How to implement recursive arrangement in java
- This article is recommended by the "Zero Basic Introduction to Java" column. Everyone is welcome to learn and communicate together! If recursion in Java is understood from the perspective of data structure, it is actually a stack. The following example clearly demonstrates the recursive arrangement process.
- JavaBase 2140 2019-11-27 17:04:02
-
- Analysis on == and equals in java
- This article is recommended by the Java Programming Introduction column, I hope it can help everyone understand it better. When "==" is used to compare basic data types, the comparison is whether the contents are equal. When comparing reference data types, the comparison is whether the memory addresses are equal.
- JavaBase 1854 2019-11-27 16:21:07
-
- Detailed explanation of the usage of enum (enumeration) in java
- This article introduces the usage of enum in Java from the java introductory column. I hope it can help students in need. Usage of enum: Usage 1, constant; Usage 2, switch; Usage 3, add new methods to the enumeration; Usage 4, override the enumeration method.
- JavaBase 2785 2019-11-27 15:49:34
-
- Detailed explanation of java class loader ClassLoader
- A class loader is an object used to load classes, and ClassLoader is an abstract class. If we are given the binary name of a class, the class loader should try to locate or generate the data that makes up the defining class. A typical strategy is to convert a given binary name into a file name, and then read the class corresponding to the file name from the file system.
- JavaBase 2335 2019-11-27 15:35:50
-
- LRU cache implementation in java
- LRU cache caches a certain amount of data and deletes some expired data when it exceeds a set threshold. This article introduces us to the implementation of LRU cache in Java in detail, and provides us with some help when learning the Java language.
- JavaBase 2433 2019-11-27 14:43:13
-
- How to calculate the least common multiple in java
- This article is written by the Java Development Introduction column to introduce how to calculate the least common multiple in Java. I hope it can help you. To calculate the least common multiple, you need to know: the least common multiple of two adjacent non-zero natural numbers is their product; the least common multiple of two adjacent odd numbers is their product.
- JavaBase 6000 2019-11-27 14:39:49
-
- Detailed introduction to java generics
- This article gives us a detailed introduction to generics in java. Java generics are "parameterized types", which means that the type is parameterized from the original specific type, similar to the variable parameters in the method. At this time, the type is also defined in parameter form, and then the specific type is passed in when using/calling .
- JavaBase 1736 2019-11-27 14:31:50
-
- Detailed graphic explanation of Java Web project basics
- Java Web is the sum of technologies that use Java technology to solve related web and Internet fields. This article introduces in detail the basic structure of the java web project and some basic knowledge in the java web project. I hope it can provide some help when you are developing java.
- JavaBase 3608 2019-11-27 14:19:38
-
- Detailed introduction to java reflection mechanism
- Java reflection is a key property of Java being considered a dynamic (or quasi-dynamic) language. The Java reflection mechanism allows programs to load, detect, and use classes that are completely unknown during compilation at runtime. This article introduces the reflection mechanism in java in detail.
- JavaBase 2240 2019-11-27 13:58:14
-
- Introduction to Java RMI (with examples)
- Java RMI refers to remote method invocation, which is a mechanism that allows an object on a Java virtual machine to call methods on an object in another Java virtual machine. Any object that can be called with this method must implement the remote interface.
- JavaBase 2346 2019-11-27 13:36:48
-
- How to traverse the elements in an ArrayList collection in java and output it
- This article introduces the method of traversing the elements in the ArrayList collection from the java introductory program column. I hope it can help students in need. The method of traversing elements in a collection is generally through a for loop and traversing according to the size of the collection. The following program details the traversal process.
- JavaBase 7076 2019-11-27 13:31:20