java如何通过自定义注解判断参数是否满足条件?

发布于 2022-09-02 20:09:20 字数 47 浏览 17 评论 0

定义注解,然后用这个注解标注在方法上,只要方法上面的参数不符合格式就结束方法 ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

枫林﹌晚霞¤ 2022-09-09 20:09:20

由于不知道你的不符合格式是什么需求,所以写了个获得参数类型和参数的。。

注解类:

@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
public @interface TestParams {
}

测试类:

public class Param {
    @TestParams
    public void test(int val) {

    }
}

class TestParam {
    public static void main(String[] args) {
        Class<?> cl = Param.class;
        Method[] methods = cl.getDeclaredMethods();
        for (Method m : methods) {
            TestParams tp = m.getAnnotation(TestParams.class);

            //获得参数
            System.out.println(Arrays.toString(m.getParameters()));

            //获得参数类型
            Class<?>[] pType = m.getParameterTypes();
            if (tp != null) {
//                Type[] gpType = m.getGenericParameterTypes();
                for (int i = 0; i < pType.length; i++) {
                    System.out.println(pType[i]);
                }
            }
        }
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文