1.extends
is used for class inheritance, usage:
class
Subclass nameextends
Parent class name{}
class Animal{}//父类 class cat extends Animal{}//子类用extends实现继承
Note: A class can only declare inheritance using the extends
keyword A parent class
# is used for interface inheritance interface, usage:
interface
interface nameextends
interface name{}
interface Clippers {} interface Warriors {} interface Lakers extends Clippers,Warriors {}//接口类用extends关键字继承其他接口(可多个)
Note:
The interface cannot be declared to inherit from other
classes
Interfaces can only inherit other - interfaces
using the
extends
declaration, and can inherit multiple interfaces When a class implements an interface using - implements
, it must not only implement
the methods
of the interface, but also implement the methods inherited by the interface Interface methods 2.implements
- are used to declare that a class implements an
- interface class
, Usage: class Class name
implements
Interface name{}class Nets implements Clippers,Warriors{}//用implements关键字声明实现了两个接口类
- A
- ordinary class
can implementskeyword declaration
implement multiple interfaces
, but must implement all methods in all interfaces - Abstract class
To implement the interface, you don’t need to implement the method of the interface (because there can be abstract methods in the abstract class)
- Meaning:
You can use the implements keyword to declare multiple interfaces to achieve something like
multiple inheritance
3.final
- Modify the
- class
so that the class cannot be inherited
Modify the - method
so that the method cannot be overridden by subclasses (it can still be inherited and called )
Modify the - attribute
so that the value of the attribute cannot be modified (make it a constant)
Modify - local variable
so that the variable cannot be modified (local constant)
final
The modified attributes must be assigned an initial value
when defined, and cannot be modified. The initial value can be assigned at the following location
- When defined (explicit initialization)
- In the constructor
- In a code block
- final
- The modified attribute is static (
static
), then
cannot assign an initial valuein the constructor. Reason: Static properties require initialization when the
class is loaded value, and the constructor is only called when creating the object, so it may result in calling the static property without creating the object and not assigning the value to the static property final - cannot modify
constructor method
is modified by, it is meaningless
final - and
static
at the same time The attribute
will not cause the class to be loaded
when called, and is more efficient 4.native
native is used to modify the
method. The modified method becomes an interface called by Java but implemented by non-Java code (native Method)
, this method can be implemented externally in any language"A native method is a java method whose implementation is provided by non-java code."
Usage method:
nativeThe position of the modified method must be before the method
return type, and the method There is no requirement to access the modifier position, such as: public native int hashCode();
##nativeDetails:
native
- has no method body
- , and no
{}
cannot be modified with##modified with
native
Method - abstract
because
abstract indicates that the method has no implementation body, while the nativemethod has The implementation body is only implemented in non-
Java code. The return type of thenative
method can be
any type -
, theIf a class with a
native method is inherited subclass will inherit this -
native
method, and can be rewritten in java
using
JNI (Java Native Interface ) Interacting with other languagesJNI
是Java
平台的一部分,它允许Java
代码和其他语言写的代码进行交互。使用步骤:
编写带有
native
方法的java
类,生成.java
文件使用
javac
命令编译生成.class
文件使用
javah -jni 类名
生成.h
文件使用
C/C++(或者其他编程语言)
实现native
方法,创建.cpp(或其他)
文件将
C/C++
编写的文件创建动态链接库(生成DLL文件)native
方法中使用System.loadLibrary()
方法加载动态库,将DLL文件名作为参数传入,这时候再运行.java
程序即可实现对本地方法的调用
详细步骤参考
native意义:
Java
无法直接访问到操作系统底层(如系统硬件),但通过使用native
关键字修饰方法可以借用其他的语言来扩展Java
程序的功能,提高程序的效率5.static
修饰变量,成为静态变量或者类变量
使用方法:
访问修饰符+``static``+数据类型+变量名
注意事项:
静态变量会被类的所有对象实例所共享,并且在类加载的时候就会初始化。
静态变量的访问方法(遵守相关访问权限):
类名.静态变量名
或者对象名.静态变量名
修饰方法,成为静态方法或者类方法
使用方法:
访问修饰符+``static``+返回数据类型+方法名+{}
注意事项:
调用方法(遵守相关访问权限):
类名.静态方法名
或者对象名.静态方法名
静态方法和普通方法都是随着类加载而加载,将结构信息存储在方法区
静态方法中不允许使用
this
和super
关键字静态方法中只能访问静态变量和静态方法
普通方法可以访问静态成员和普通成员
修饰代码块,成为静态代码块:
静态代码块会在类加载时被加载,优先级和静态属性一样,有多个静态代码块和静态属性时,初始化顺序按定义顺序执行
好处:
static
关键字的使用,将类中的一些成员修饰成静态的,这样我们不需要创建该类的对象就可以调用该成员,大大提高了编程效率6.transient
基本介绍:
transient
用于修饰实现了Serilizable
接口的类中的成员变量,在该类的实例对象进行序列化处理时,被transient
修饰的成员变量不会进行序列化。使用例子:
import java.io.FileOutputStream; import java.io.IOException; import java.io.ObjectOutputStream; import java.io.Serializable; public class outStream { public static void main(String[] args) throws IOException { String filePath = "d:\Cat.txt"; ObjectOutputStream oos = new ObjectOutputStream(new FileOutputStream(filePath)); oos.writeObject(new Cat("小花猫", 3)); oos.close(); } } class Cat implements Serializable { private String name; private int age; //没有用transient修饰 public Cat(String name, int age) { this.name = name; this.age = age; } @Override public String toString() { return "Car{" + "name='" + name + ''' + ", age=" + age + '}'; } } public class inStream { public static void main(String[] args) throws IOException, ClassNotFoundException { String filePath = "d:\Cat.txt"; ObjectInputStream ois = new ObjectInputStream(new FileInputStream(filePath)); System.out.println(ois.readObject()); ois.close(); } }
可以在
Cat.txt
文件内看到两个成员变量都能被序列化,并且能被反序列化读出信息。当小花猫觉得自己的年龄是隐私不想被读出时,用
transient
修饰成员变量age
:...... private String name; private transient int age; //使用transient修饰 ......
这时在
Cat.txt
文件中可以看到只有name
一个成员变量被序列化,反序列化后的成员变量age
读出的是int类型的默认值,说明对于transient
修饰的成员变量,在类的实例对象序列化的过程中会被忽略transient
细节对
transient
修饰的成员变量可以理解为:不会参与进行对象的序列化和反序列化过程,生存周期仅存于调用者的内存而不会写进磁盘里进行持久化static
修饰的成员变量(静态变量)也是不可序列化的,不论被transient
修饰与否
因为序列化是保存的实例对象的状态,而静态变量保存的是类的状态
transient
关键字只能修饰变量,不能修饰方法和类transient
关键字不能修饰局部变量如
transient
关键字修饰的是自定义类的变量,则该类需要实现Serilizable
接口
注意:
实现
Serilizable
接口的类的实例对象是自动进行序列化的,如果序列化对象的类实现的是Externalizable
接口,则序列化不会自动进行,需要实现接口内的方法指定要序列化的变量,这时与有无Transient
修饰无关7.synchronized
基本介绍:
关键字
synchronized
可以保证在同一时刻,只有一个线程可以执行被synchronized
修饰的方法或代码块线程同步:
程序中多个线程都要使用同一个方法,而这个方法用
synchronized
进行了修饰,在多个线程调用这个方法时必须遵循同步机制线程同步机制:
当一个线程使用
synchronized
修饰的方法时,其他线程想使用这个方法时就必须等待,直到这个线程使用完synchronized
方法synchronized使用方法:
普通同步方法:
public synchronized void m () {}
public class syn implements Runnable { static int i = 0; public static void main(String[] args) throws InterruptedException { syn test = new syn(); Thread t1 = new Thread(test); Thread t2 = new Thread(test); t1.start(); t2.start(); } public synchronized void increase() {//被synchronized修饰的同步方法 System.out.println(Thread.currentThread().getName() + "调用:" + i++); } @Override public void run() { for (int j = 0; j < 100; j++) { increase(); } } }
两个线程同时调用一个对象的一个同步方法,由于一个对象只有一把锁,所以只有一个线程能够获得该对象的锁,另一个线程无法获得,就不能调用该对象的
synchronized
方法,需要等对象被释放后才能调用。从运行结果中可以证明线程1抢到了锁,线程0必须等待线程1执行完毕,否则不能访问该同步方法。
静态同步方法:
public static synchronized void m () {}
public class syn implements Runnable { static int i = 0; public static void main(String[] args) throws InterruptedException { syn test = new syn(); syn test1 = new syn(); Thread t1 = new Thread(test);//传入实例对象test Thread t2 = new Thread(test1);//传入实例对象test1 t1.start(); t2.start(); } public static synchronized void increase() {//同步静态方法 System.out.println(Thread.currentThread().getName() + "调用:" + i++); } @Override public void run() { for (int j = 0; j < 100; j++) { increase(); } } }
虽然两个线程实例化了两个不同的对象,但是
synchronized
修饰的是静态方法,两个线程仍然发生了互斥,因为静态方法是依附与类的而不是对象,线程1先抢到了类的锁,而线程0必须等待线程1执行完毕释放才能调用同步方法同步代码块:
synchronized(object) {}
public class syn implements Runnable { static Object object = new Object();//共享对象 public static void main(String[] args) throws InterruptedException { syn test = new syn(); syn test1 = new syn(); Thread t1 = new Thread(test); Thread t2 = new Thread(test1); t1.start(); t2.start(); } @Override public void run() { synchronized (object) {//代码块用静态成员变量上锁 for (int j = 0; j < 100; j++) { System.out.println(Thread.currentThread().getName() + "调用第" + j + "次"); } } } }
同步代码块用两个实例变量共享的静态成员
object
对象来上锁,虽然是两个线程实例化两个不同的对象,但是对整个syn
类来说只有一个共享的object
对象,所以只有一把锁,每当有线程来访问代码块时需持有锁,对象锁被其他线程持有时需等待。线程1需要等线程0执行完毕才能访问同步代码块同步的局限性:
由于同步的方法或代码块只能同一时间让一个线程访问,所以会导致程序的执行效率降低
尽可能让
synchronized
修饰的范围最小化,来减少互斥对程序执行带来的影响8.volatile
基本介绍:
volatile
用于修饰变量,用volatile
修饰的变量的值被某个线程修改时,会强制将修改的值立即写入主存中,主存中的值更新会使得缓存中的该变量的值失效,对比与非volatile
变量,可能会被其他线程读取到更新前的值。使用方法:
//现在有线程1和线程2同时执行下列代码 int i = 0; i = i + 1;
执行完毕后预想的结果是
i = 2
;但是可能存在这样一种情况:两个线程先同时把i的值读取到自己的工作内存中,然后再分别执行i = i + 1
的操作,再将结果写入主存,这样两个线程写入的都是i = 1
,最终i
的结果是1
,而不是2
但如果
i
是volatile
修饰的变量就会不一样了,在一个线程修改i
的值后,会立即强制在主存中更新i
的值,这样会导致另一个线程的工作内存中i
的缓存值无效,所以另一个线程再次从主存中读取新的i
的值,这样保证了i
的值是最新并正确的并发编程的三大概念:
原子性:执行一个操作时,要么全部步骤执行完毕且不被中断,要么就不执行
x = 100;//是原子性操作 y = x;//不是原子性操作,可分解为:1.先读取x的值 2.将x的值写入主存 x ++;//不是原子性操作,可分解为:1.读取x的值 2.进行加一操作 3.写入主存
可见性:多个线程对同一个变量进行操作时,一个线程修改了变量的值,其他线程能立即看到修改的值
有序性:程序执行的顺序按照代码的先后顺序执行
volatile
的意义保证了不同线程对变量进行修改时的可见性:因为对于
volatile
变量来说,被修改后新值对其他线程来说是立即可见的保证了有序性:
volatile
禁止了指令重排,它能保证在对volatile
修饰的变量进行操作时,之前的代码语句已经全部被执行,并且后面的语句都未执行,但是对其他语句的顺序是不做保证的
注意:
volatile
不能保证原子性,因为不能保证对变量的操作是原子性操作9.this
在方法中修饰属性,this理解为
当前对象
,用来区别成员方法和形参,通常省略修饰方法,this理解为当前对象,通常省略;不能在静态方法中使用
调用构造器,在构造器中使用
this(形参列表)
显式调用指定的其他构造器必须在首行调用其他构造器
一个构造器中不能调用多个其他构造器
不能在构造器中调用递归调用,不能成环调用
10.super
super可以理解为:父类的
修饰属性:去父类中找对应属性,用来区分子父类重名的属性
修饰方法:调用重写之前的方法
调用构造器:使用
super(形参列表)
指定调用父类构造器super(形参列表)
必须放在构造器的首行super(形参列表)
和this(形参列表)
只能二选一在构造器首行如果没有显式声明
super(形参列表)
或this(形参列表)
则默认调用父类的空参构造器super()
(如果此时父类中没有空参构造器就会报错)不能在静态方法中使用
当一个方法和属性被static属性修饰时,这些方法和属性是优先于对象加载进入内存的,是随着类的加载而加载的;this是当前对象的引用,super是指父类的引用,当静态方法加载进内存进栈时,如果在静态方法中有this和super关键字时,this和super也被加载到了内存,但是这个时候并没有对象的引用,this和super没有初始化,所有编译会报错。
10.1.子类对象实例化的过程
11. Access modifier
public modified class:
At most in a class There can be a public class, and the file name must be consistent with the public class
If there is no public class, the file name can be arbitrary
The above is the detailed content of What are the important keywords in Java. 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的相关问题,以及他们的一些区别,下面一起来看一下,希望对大家有帮助。

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

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


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

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

SublimeText3 Mac version
God-level code editing software (SublimeText3)

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),
