All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.azbh111.utils.java.annotation.Unsafe Maven / Gradle / Ivy

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 {
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy