Learn java and write down your own experience or summary.
Java Identifiers
Identifiers consist of letters, underscores (_), dollar signs ($), and numbers.
Identifiers cannot start with a number.
The identifier cannot be the java keyword.
Identifiers are case-sensitive.
Common Java keywords
##Keywords |
Use |
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
boolean, byte, char, double, float, int, long, short,void | ##Basic types||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
new, super, this, instanceof, null
| Object creation, reference||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if, else, switch, case, default
| Select statement||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
do, while, for
| Loop statement||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Transfer of control |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Exception handling |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Thread synchronization |
##abstract, final, private, protected, public, static | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Modification instructions |
##class, extends, interface, implements, import, package | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Class, inheritance, interface, package | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
native, transient, volatile |
##Other methods | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
true, false |
Boolean constant |
##Keywords |
Data type |
Bytes occupied |
Default value |
Value range |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
##byte
| Byte type1 | 0 | -2^ 7 ~ 2^7-1 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
short
| Short integer type2 | 0 | -2^15 ~ 2^15-1 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
int
| Integer type4 | 0 | -2^31 ~ 2^31-1 |
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
##long |
Long | 8 | 0 | -2^ 63 ~ 2^63-1 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
float | ##Single precision floating point type4 | 0.0F | ##1.4e^-45 ~ 1.4e^-45-1 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
##Double floating point type |
8 | 0.0D | 4.9e^-324 ~ 1.798e^+308 | char | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Character type |
2 | 0 | 0 ~ 65535 | ##boolean | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Boolean ##1 |
false | true, false |
##Transform Meaning character |
Description |
|||||||||||||||||||||||||||||||||||||||||||||||
\' | ##Single quote character||||||||||||||||||||||||||||||||||||||||||||||||
\''
| Double quote character||||||||||||||||||||||||||||||||||||||||||||||||
Backslash |
||||||||||||||||||||||||||||||||||||||||||||||||
Enter | ||||||||||||||||||||||||||||||||||||||||||||||||
Newline |
||||||||||||||||||||||||||||||||||||||||||||||||
Paper feed |
||||||||||||||||||||||||||||||||||||||||||||||||
Horizontal tab |
||||||||||||||||||||||||||||||||||||||||||||||||
backspace |
字符串常量:有双引号括起来的由0个或多个字符组成的字符序列。字符串可以包含转义字符。
变量的取值范围/*** Create by libra*/public class VariablesDemo {/**变量的取值范围*/public static void main(String[] args) { System.out.println("数据的取值范围:"); System.out.println("字节型: " + Byte.MIN_VALUE + " ~ " + Byte.MAX_VALUE); System.out.println("短整型: " + Short.MIN_VALUE + " ~ " + Short.MAX_VALUE); System.out.println("整型型: " + Integer.MIN_VALUE + " ~ " + Integer.MAX_VALUE); System.out.println("长整型: " + Long.MIN_VALUE + " ~ " + Long.MAX_VALUE); System.out.println("单精度浮点型: " + Float.MIN_VALUE + " ~ " + Float.MAX_VALUE); System.out.println("双精度浮点型: " + Double.MIN_VALUE + " ~ " + Double.MAX_VALUE); } }
输出结果: 强制转换 格式:变量 = (数据类型) 表达式 基本数据类型自动转换顺序:byteàshortàcharàintàlongàfloatàdouble. 【注意】布尔类型不能与其他类型转换。 运算符运算符(双目单目)稍微提下,位运算符。 算数运算符:
Relational operators: Operator precedence: (==,--) > ~ > ! > Arithmetic operators > Shift operators > Relational operators > &, ^, |, &&, ||, || Commonly used mathematical functions Math class
输入输出标准输出流System.out提供三种输出: print():输出后不换行 println():输出后换行 printf():类似于c语言中的printf()用法
标准输入流System.in提供read()等方法。写一个程序便于说明及理解。 import java.io.BufferedReader;import java.io.IOException;import java.io.InputStreamReader;public class Input {public static void main(String[] args) throws IOException { System.out.println("==============字符==============");char ch = (char) System.in.read(); System.out.println("读入的字符为:" + ch); System.out.println("==============字符串=============="); BufferedReader in = new BufferedReader(new InputStreamReader(System.in)); String s = in.readLine(); System.out.println("读入的字符串为:" + s); System.out.println("==============数字=============="); String x = "123";int m = Integer.parseInt(x); String y = "123.123";float n = Float.parseFloat(y); System.out.println("x = " + x); System.out.println("y = " + y); } } 输出结果: 还可以使用java.util.Scanner类输入: import java.util.Scanner;public class Input {public static void main(String[] args) throws IOException { Scanner s = new Scanner(System.in); System.out.println("请输入数据:"); System.out.println("请输入数据:");short a = s.nextShort(); //输入短整数int b = s.nextInt(); //输入整数long c = s.nextLong(); //输入长整数float d = s.nextFloat(); //输入单精度浮点型double e = s.nextDouble(); //输入双精度浮点型String f = s.nextLine(); //输入字符串 System.out.println("a = " + a); System.out.println("b = " + b); System.out.println("c = " + c); System.out.println("d = " + d); System.out.println("e = " + e); System.out.println("f = " + f); } } 输出结果: 在Scanner中还有很多输入。
流程控制语句和c/c++没有太大区别。 【注意】循环结构体中可以用break 标号名; 和continue 标号名; 来跳出循环。 数组一维数组声明有两种格式: 1.数组元素类型 数组名[]; 2.数组元素类型[] 数组名; 建议用第二种声明方式 【建议】二维数组及多维数组声明方式类似于一维数组,不过建议大家用第二种数组声明方式,[]也是数组声明的组成部分。 【注意】 1.java数组和c/c++数组不同,java数组理解为数组的数组,数组的每一维的大小不一定相同。 例如: int[][] a = new int[2][]; a[0] = new int[3]; a[1] = new int[4];
上面这段代码声明了一个二维数组,但是第0维和第1维的大小不相同。 2.求一维数组a长度经常用到的方法是a.length。若是多维数组也可以这样用:a[i].length,a[i][j].length ……。
对象对象的初始化和构造方法以及变量的作用域在一个例子中说明。 public class Scope {//成员变量的作用域是整个类体int x;int y;/*对象的初始化*/{ x = 2; y = 1; }/*对象的构造方法*/public Scope { x = 2; y = 1; }//方法参数a的作用域是整个方法public void method(int a) {int x = 5;for (int i = 1; i 【注意】构造方法的名称必须与类名相同;构造方法无返回类型;一个类可以提供多个构造方法,系统自动调用参数匹配的构造方法。 静态变量和静态方法用static修饰的成员变量叫静态变量,也叫类变量。 访问: 在本类中直接访问。 通过类名访问。 通过类的一个对象访问。 【注意】静态变量的在存储上归属类空间,但是不依赖任何对象;(通过对象访问静态变量实质上还是访问类空间的变量) 【建议】在类外访问静态变量时通过类名访问以防混淆。 赋初值:即可以通过下面代码块赋初值,也可在定义时赋初值。 static {//code}
【注意】静态代码块只能访问静态变量;对象的创建不会执行static代码块。注意区分静态空间和对象空间。 class TalkPlace {static String talkArea = ""; }public class User {static int count = 0; String username;int age; public User(String name, int yourage) { username = name; age = yourage; } void Login() {//直接访问同一类中的静变量count++; System.out.println("you are no " + count + " user"); }void Speak(String words) {//访问其他类的类变量,通过类名访问类变量TalkPlace.talkArea = TalkPlace.talkArea + username + "说: " + words + "\n"; }public static void main(String[] args) { User x1 = new User("张三", 20); x1.Login(); x1.Speak("hello"); User x2 = new User("李四", 16); x2.Login(); x2.Speak("good morning"); x1.Speak("bye"); System.out.println("-----讨论区内容如下:"); System.out.println(TalkPlace.talkArea); } } 用static修饰的方法叫静态方法,也叫类方法。 调用: 一般用类名做前缀调用。 通过对象调用 【注意】静态方法也不依赖任何对象;静态方法中只能处理静态变量和其他静态方法,绝不能访问任何归属对象空间的变量和方法。 public class FindPrime2 {public static boolean prime(int n) {for (int k = 2; k |
The above is the detailed content of Summary of java basic knowledge. For more information, please follow other related articles on the PHP Chinese website!

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于结构化数据处理开源库SPL的相关问题,下面就一起来看一下java下理想的结构化数据处理类库,希望对大家有帮助。

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于PriorityQueue优先级队列的相关知识,Java集合框架中提供了PriorityQueue和PriorityBlockingQueue两种类型的优先级队列,PriorityQueue是线程不安全的,PriorityBlockingQueue是线程安全的,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于java锁的相关问题,包括了独占锁、悲观锁、乐观锁、共享锁等等内容,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于多线程的相关问题,包括了线程安装、线程加锁与线程不安全的原因、线程安全的标准类等等内容,希望对大家有帮助。

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于枚举的相关问题,包括了枚举的基本操作、集合类对枚举的支持等等内容,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于Java的相关知识,其中主要介绍了关于关键字中this和super的相关问题,以及他们的一些区别,下面一起来看一下,希望对大家有帮助。

封装是一种信息隐藏技术,是指一种将抽象性函式接口的实现细节部分包装、隐藏起来的方法;封装可以被认为是一个保护屏障,防止指定类的代码和数据被外部类定义的代码随机访问。封装可以通过关键字private,protected和public实现。

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于平衡二叉树(AVL树)的相关知识,AVL树本质上是带了平衡功能的二叉查找树,下面一起来看一下,希望对大家有帮助。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

Atom editor mac version download
The most popular open source editor

Dreamweaver Mac version
Visual web development tools

Dreamweaver CS6
Visual web development tools

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software
