Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有来自 spring、junit jar 的注释。如何检查一个注释是否仅适用于类变量?
检查他们的javadoc。例如:@RunWith有一个@Target(value=TYPE)注解,所以它只适用于类型。@Test有一个@Target(value=METHOD)注解,所以它只适用于方法。
@RunWith
@Target(value=TYPE)
@Test
@Target(value=METHOD)
我一直在尝试想出一个表格,学员可以在其中申请化妆课程,并且当他们提交时,数据将存储在数据库中。我是 android 编程新手,我也在使用 php 连接到数据库。
我不知道代码哪里出错了
这是我的错误:
08-01 1