com.github.azbh111.utils.java.annotation.Unsafe Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of utils-java Show documentation
Show all versions of utils-java Show documentation
com.github.azbh111:utils-java
The newest version!
package com.github.azbh111.utils.java.annotation;
import java.lang.annotation.*;
/**
* 作用在方法上
* 表示此方法是不安全的,要按方法说明使用
* 否则可能导致程序运行不符合预期,甚至jvm崩溃
*
* @author: zyp
* @date: 2020/6/19 10:24 下午
*/
@Target({ElementType.METHOD})
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface Unsafe {
}