08 2021 档案

摘要:public class EmailEvent extends ApplicationEvent { private String address; private String text; public String getAddress() { return address; } public 阅读全文
posted @ 2021-08-09 14:39 炼金术士0z 阅读(56) 评论(0) 推荐(0)
摘要:常见的运算符有与(&)、或(|)、异或(^)、取反(~)、左移(<<)、右移(>>是带符号右移 >>>无符号右移动)。下面来细看看每一种位运算的规则。 按位取反~ 规则:二进制的0变成1,1变成0。 |= public static strictfp void main(String[] args) 阅读全文
posted @ 2021-08-04 18:37 炼金术士0z 阅读(737) 评论(0) 推荐(0)
摘要:最重要的三个注解,@Configuration,@EnableAutoConfiguration,@ComponentScan #@EnableAutoConfiguration注解 selectImports#getAutoConfigurationEntry#getCandidateConfig 阅读全文
posted @ 2021-08-01 15:30 炼金术士0z 阅读(278) 评论(0) 推荐(0)