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
-
- Android process communication mechanism AIDL
- AIDL stands for Android Interface Definition Language, which is Android interface description language. It sounds very profound, but its essence is an auxiliary tool for generating inter-process communication interfaces. It exists in the form of an .aidl file. All the developer needs to do is to define the interface for inter-process communication in the file. When compiling, the IDE will generate a .java file that can be used by the project based on our .aidl interface file. , which is somewhat similar to what we call "syntactic sugar".
- java类库 1911 2016-10-31 11:32:30
-
- Simple version of TimSort sorting algorithm
- Principle and implementation of simple version TimSort sorting algorithm
- java类库 2109 2016-10-31 10:53:48
-
- Java mail sending, qq and 163 mailboxes send each other, and qq and 163 mailboxes send other mailbox instances
- After studying for nearly a day and reviewing relevant information, I finally have a little understanding of the mechanism and principles of sending emails in Java. I hope it can help everyone!
- java类库 2483 2016-10-29 13:48:17
-
- Mybatis common summary
- Mybatis common summary: parameters, return, execute sql, include, etc.
- java类库 1572 2016-10-29 13:37:38
-
- Strings in Java
- Strings in Java
- java类库 1769 2016-10-29 11:52:17
-
- Basic knowledge of running java programs
- Each JVM thread creates a private thread stack when it is started. A jvm thread stack is used to store stack frames. The jvm thread stack is very similar to the stack in C language. It is responsible for managing local variables and some operation results, and is also involved in function calls and function returns. The size of the running thread stack in the JVM specification can be fixed or dynamically allocated, or it can be calculated according to certain rules. Different jvm's implementation of the stack will be different. Some may provide developers with ways to control the initial size of the jvm thread stack; for dynamic allocation, they may also provide settings for the jvm's maximum and minimum values.
- java类库 1915 2016-10-29 11:31:04
-
- Java serialization and deserialization
- Java serialization refers to the process of converting objects into byte sequences, while deserialization is the process of converting only byte sequences into target objects.
- java类库 1696 2016-10-29 10:56:57
-
- java garbage collection
- In Java, when an object does not have any references, it becomes garbage. If it is not recycled in time and the memory is released, the garbage will accumulate more and more, and eventually out of memory!, and the JVM will stop running.
- java类库 2142 2016-10-29 10:06:19
-
- Java byte stream
- Input in Java refers to reading from data sources to the Java program. The data source here can be files, memory or network connections, and output refers to writing from the Java program to the destination. Input and output streams can be divided into the following types (the File class is not considered for the time being)
- java类库 2078 2016-10-20 16:41:44
-
- Break and continue in java jump out of the specified loop
- In Java, break and continue can jump out of the specified loop. If no loop name is added after break and continue, the loop will be jumped out by default. If the specified loop name is added after it, the specified loop can be jumped out (the specified loop is usually a nested loop). outside loop).
- java类库 2470 2016-10-20 11:36:22
-
- socket programming
- First let's look at the simplest socket client and server examples:
- java类库 1740 2016-10-20 11:33:18
-
- JAVA WEB scope
- JAVA WEB scope
- java类库 1892 2016-10-20 11:30:51
-
- JAVA Collections tool class
- JAVA Collections tool class sort() sorting method
- java类库 1604 2016-10-20 11:27:55
-
- Class loading mechanism and reflection
- This chapter focuses on the interfaces and classes under the java.lang.reflect package
- java类库 1830 2016-10-20 11:14:51
-
- java graphical user interface list box
- The list box is generated through the Swing component JList, which always occupies a fixed number of rows of space on the screen. If you want to get the selected elements in the list box, just call getSelectedValuesList(), which can generate a string array containing the names of the selected elements. The JList component allows multiple selections; if you hold down the Ctrl key, all clicked elements can be selected; if an element is selected, hold down the Shift key and click another element, then all elements between the two elements are selected; to To remove an element from the selection, hold down the Ctrl key and click on the element.
- java类库 2414 2016-10-20 10:54:35