Java+Eclipse+MySQL+Swing to realize the student union examination score management system (free and complete project)
Copyright notice: originality is not easy. Plagiarism and reprint are prohibited in this article. Infringement must be investigated!
catalogue
1, Requirements development document
2, Database design document
3, Function module part code and effect display
4, Complete source code download
5, Author Info
1, Requirements development document
...
Added by icaro on Wed, 05 Jan 2022 17:02:40 +0200
JAVA exception learning
catalogue
I try-catch
1. There is an exception. There is a difference between adding try catch and not adding try catch
2.try-catch-finally
2.try-catch-catch-finally
3. How to make finally not output
4. Add return to the statement
II Throws and Throw
1. Differences
2. Examples
III Custom exception
1. Steps
2. Example 1
3. ...
Added by aloysiusf on Wed, 05 Jan 2022 04:09:16 +0200
Surpass Day5 - Java Object Oriented Creation and Use 1
Catalog
1. Members/Instances/Object Variables, Instances (Objects)
1.1 Basic Properties of Objects
1.2 Member variables, instance variables, static variables (class variables), local variables
2. Creation and use of objects
2.1 Definitions of objects and references
2.2 Object Creation
2.3 JVM Three Memories
2.4 Object Access
2.5 Instan ...
Added by mdl on Tue, 04 Jan 2022 16:14:09 +0200
Chapter 13 design of Chuanzhi Book City Project
1, Project overview
In recent years, with the rapid rise of the Internet, the Internet has become the best channel to collect information and gradually entered the traditional circulation field. Therefore, e-commerce has become popular. More and more businesses have built online stores to show consumers a novel shopping concept. As the front-e ...
Added by Reaper0167 on Tue, 04 Jan 2022 14:02:31 +0200
Class aircraft war games breakthrough version
1, Game Description
The player controls the movement of the aircraft by moving the mouse (the aircraft is always on the left, and the monster appears on the right). Click the left mouse button to launch shells. If the shells hit the monster, the monster will explode. The player will get one point. After the player's cumulative score reaches th ...
Added by tryingtolearn on Tue, 04 Jan 2022 08:44:19 +0200
JAVA basic exercise (HOW2J.CN)
@TOC
JAVA basic exercise (HOW2J.CN)
Exercise - naming conventions
Consider whether the following variable names are legal. If not, why?
1. int a_;
2. int a@;
3. int a3;
4. int 8@;
5. int 9_;
6. int X$_;
7. int y;
8. int _$_;
9. int $_$;
10. int $*$;
11. int $1$;
12. int _1_;
13. int _@_;
14. int a#;
15. int a";
16. int 123a";
17. int 123a_; ...
Added by kodlcan on Mon, 03 Jan 2022 21:25:20 +0200
Array of java basic syntax (including bubble sorting)
catalogue
array
Definition of array:
One dimensional array
Array creation:
Suggestions for use:
Array access:
Array length
Traversal of array:
Two dimensional array
Traversal of two-dimensional array:
Arrays and methods
Common problems in using arrays
Memory partitioning in Java
1 stack memory
2. Heap memory:
3. Method area:
...
Added by dervaish on Mon, 03 Jan 2022 06:35:18 +0200
java date time
1. Date class
java. The util package provides a Date class to encapsulate the current Date and time. The Date class provides two constructors to instantiate a Date object.
constructor
date(): get the number of milliseconds from January 1, 1970
Methods in Date
Long getTime(): get timestamp (i.e. milliseconds)
int compareTo(Date ...
Added by genics on Mon, 03 Jan 2022 00:40:39 +0200
Introduction to Java posture: [process control]
Process control is a very important learning stage for any language. It provides the basic means of the overall operation process of the program. It can also be said that process control is an important part of making the computer move.
Let's talk about what we need to know about process control?
Control statement:
"Sequential struc ...
Added by Pjack125 on Fri, 31 Dec 2021 13:27:47 +0200
Introduction to java -- Enumeration
Introduction to java -- Enumeration
concept
enumeration is a new feature introduced in JDK 1.5
grammar
public enum Color{
//Add public static final Color by default
RED,GREEN,BLUE;
}
essence
Enumeration is a restricted class and has its own methods. When you create your own enum class, this class inherits from Java lang.Enum ...
Added by dotwebbie on Thu, 30 Dec 2021 05:50:51 +0200