包含标签:Java 的文章
-
Bubble sorting of Java data structures and algorithms (power node Java College)
Bubble sorting (bubble sort) is a simple sorting algorithm. It repeatedly visits the sequence to be sorted, compares t…… -
Development of Java wechat public platform (1) access to wechat public platform
The previous articles have been talking about the preparation for the development of wechat public platform. From this…… -
Linked list of Java data structure (Java Institute of power nodes)
Single linked list: Insertfirst: insert a new link point in the header with a time complexity of O (1) Deletefirst: de…… -
Java keyword this (power node)
We usually know that this represents the current instance of the method calling this class when using the this keyword…… -
Array of Java data structures (Java Academy of power nodes)
What is the use of arrays When you need to arrange the 30 numbers in size, it is a good choice to store them in a data…… -
Detailed explanation of Java rewriting and overloading methods and differences
Override Rewriting is a subclass's rewriting of the implementation process of the accessible methods of the parent cla…… -
Summary of object-oriented knowledge points in Java
1、 Concepts of objects and classes Class: an abstraction of a class of things with the same properties and methods. O…… -
Java and freemaker keep two decimal places
1、 Java retains 2 decimal places 2、 Freemaker keeps two decimal places Supplement: freemaker keeps decimals Freemake…… -
10 Java programmers familiar with object-oriented design principles
Object oriented design principle is the core of oops programming, but most Java programmers I have seen are enthusiast…… -
Java does not print instances of array elements with circular statements
Examples are as follows: The above example of printing array elements without circular statements in Java is all the c…… -
Java intercepts string instances between specific two tags
If there is a string: higklmnopq The Java code is as follows: The above example of Java intercepting the str…… -
Comparison and difference between overloading and rewriting in Java
The difference between overloading and rewriting in Java First, let's talk about overloading (1) Method overloading is…… -
Summary of the differences between Java abstract classes and interfaces
Summary of the differences between Java abstract classes and interfaces Abstract class and interface are two mechanism…… -
Java efficiently prints an instance of a two-dimensional array (no recursion, no two for loops)
Print an element, do not let the loop variable i + +, and go out of the thinking formula (execute the loop body once, …… -
Spring + mybatis multi data source configuration implementation example
Recently, mybatis was used to configure multiple data sources. Originally, it was thought that a simple configuration …… -
Detailed explanation of spring MVC @ requestmapping annotation
introduction: Some time ago, the rest style was used in the project to develop the program, but when submitting data i…… -
Summary of network communication (TCP communication, UDP communication, multicast and NiO) of java basic knowledge
Summary of network communication based on Java In this article, we mainly discuss how to use java to realize network c…… -
Java simulation wechat grab red envelope example code
Java simply simulates the wechat red envelope grabbing function. In this example, 10 people grab a red envelope of 100…… -
Basic knowledge of JavaBean and common garbled code solutions
Basic knowledge of JavaBean and common garbled code solutions The garbled code problem should be a problem encountered…… -
Detailed explanation of split () method example of Java regular expression
This article illustrates the split () method of Java regular expressions. Share with you for your reference, as follow…… -
An example analysis of Chinese regular matching method in Java
This paper describes the method of Java regular matching Chinese. Share with you for your reference, as follows: 1. Ma…… -
Java using POI to operate Excel files
1、 Definition of poi There are two mainstream toolkits for operating excel in Java: JXL and poi. JXL can only operate…… -
Java regular expression determines whether the string contains Chinese examples
preface In daily development and programming, we sometimes get some input information from users. For specific applica…… -
A simple example of intercepting and dividing string in Java
At present, there are three forms: It can be selected and used according to actual needs Operation results: The above …… -
Example of a method for Java to get numbers in a string through regular expressions
preface This article uses a small example to learn how to obtain numbers in a string through regular expressions in Ja…… -
On the loss of digital accuracy in Java object to JSON
phenomenon Large numbers in Java, such as 18 / 19 bit integers (long), are converted into JSON. After they are output …… -
Detailed explanation of JDBC connection database in Java
1、 Concept 1. In order to enable the program to operate the database and operate the tables in the database, each dat…… -
Detailed explanation of Hibernate naming strategy
The naming strategy of Hibernate can reduce the maintenance of database identifier naming and further reduce the amoun…… -
Java implementation of random output 300 questions four operations
If you don't have much to say, please see the code: The above is the whole content of this article. I hope the content…… -
JDBC detailed explanation of Java transaction management learning
What is a Java transaction The general idea is that transactions are only related to databases. Transactions must comp…… -
Differences in Java Tostring(), (string), valueof() method
In the actual development and application of Java projects, the basic function of converting objects into strings is o…… -
Java decomposes a positive integer into prime factors
Program analysis: to decompose the prime factor of N, first find a minimum prime number k, and then complete it accord……