Java IO stream -- use of File class

Use of File class An object of the File class, representing a File or a File directory;The File class is declared in Java Under IO package;The methods involved in the File class are only methods for creating, deleting, renaming and obtaining relevant information of files or File directories, and do not involve the operation of writing or re ...

Added by Javizy on Fri, 14 Jan 2022 02:22:32 +0200

Of Java core class library (multithreading: realizing multithreading and thread synchronization)

(I) Fundamentals of Java language (II) Java object oriented programming (III) Of Java core class libraries (common API s, string classes, collection classes, generics) (IV) Of Java core class library (exception) (5) Stay longer.... Continuous updating 1 multithreading 1.1 process Process: is a running program It is an independent unit for ...

Added by johnmess on Thu, 13 Jan 2022 21:55:15 +0200

Feng Baobao said: array

Chapter IV: array two 1. Array overview and features two 1.1 concept of array two 1.2 creation of array two 1.2.1 dynamically creating arrays two 1.2.2 statically creating arrays two 1.3 basic operation of array three 1.4 default initialization of array five 1.5 heap and stack in JVM (emphasis) five 2. Common operations of array six 2 ...

Added by ktstowell on Thu, 13 Jan 2022 16:28:53 +0200

Introduction to Java

Introductory test Identify requirements Project Name: Journey Addition, deletion, modification and query of databaseThe primary and secondary menus of the page are displayed.Image upload and deletionSide catalogue displayPage Pagination Determine the tools and frameworks used springboot framework, idea, mysql, mybatis, maven Design table ...

Added by majiclab on Tue, 11 Jan 2022 11:07:18 +0200

Summary of common Java classes

Common Java classes Packaging Because the basic types in Java language are not object-oriented and do not have the nature of objects, it is inconvenient to use them in practice. Java in Java Lang package provides wrapper classes corresponding to eight basic types, which can be easily converted into objects for processing, and some methods can ...

Added by mcrbids on Tue, 11 Jan 2022 00:24:52 +0200

java based exception handling (detailed notes)

Blog home page Xiao Wu_ Xiao Wu has an idea_ CSDN blog - notes, java,leetcode domain bloggersWelcome to pay attentiongive the thumbs-upCollection and messageHeaven rewards diligence. Diligence can make up for weakness. Come on with Xiao WuFreshmen, the level is limited, please give advice, thank you very much!     🍊 Here's a lit ...

Added by thunderbox on Mon, 10 Jan 2022 17:52:46 +0200

Talk about what's new with Java 9-17

The introduction of Lambda expressions and streams in Java 8 has brought a functional programming style. In the future, the pace of java version release will be accelerated, and a new version will be switched every six months. Many new features may not be clear to many people. Although most of today's scenarios are Java 8, it is also necessary ...

Added by fazbob on Mon, 10 Jan 2022 06:10:50 +0200

[Java foundation] reflection mechanism summary

introduction When I first learned Java reflection mechanism, I just felt very magical, but I didn't know how to use it, so I forgot it after a period of time; Recently, I came into contact with the framework, encountered reflection in my study, and deeply realized the magic of the reflection mechanism. I came back to review the reflection mech ...

Added by Kitara on Sun, 09 Jan 2022 04:49:53 +0200

static,final, singleton design pattern and abstract (nanny notes)

Blog home page Xiao Wu_ Xiao Wu has an idea_ CSDN blog - notes, leetcode,java domain BloggerWelcome to pay attentiongive the thumbs-upCollection and messageHeaven rewards diligence. Diligence can make up for weakness. Come on with Xiao WuFreshmen, the level is limited, please give advice, thank you very much!    🍊 Here's a little rou ...

Added by 99naa on Sat, 08 Jan 2022 03:13:11 +0200

[0 Basic java] Teaching Log: javaSE-Object-Oriented 3

Overview of this chapter This chapter belongs to the content of Object-Oriented Chapter 2, mainly explaining knowledge points such as this keyword, static keyword, code block, package, import, object-oriented one of the three main features - encapsulation. 1. this keyword The role of this: this represents the current object itself.M ...

Added by MarkR on Fri, 07 Jan 2022 19:03:01 +0200