Shark

时而学习之 不亦乐乎

为什么 Jdk 会自动为注解创建代理类

搬运

问题 原文地址 @Retention(RetentionPolicy.RUNTIME) @Target(value={ElementType.TYPE}) @Documented public @interface MyAnnotation { } @MyAnnotation public class Main { public static void main(String[] ...

Win10 使用 VS2015 编译 gRPC

随记

如果你按照GitHub上的官方指导文档安装步骤来,会出现很多错误。后来也尝试了很多博客上的方法,也都无效,但是给我提供了很好的思路。挣扎着等了一周的进度条,终于编译完成并运行了第一个HellWorld。在此记录下,希望能让后来人少走弯路。 先介绍下环境:Win10专业版 X64,VS2015社区版,GRPC 准备环境。下面是官网上标出的需要预装的依赖。这里使用到了 choco ,安装很...

ORDER BY 子句中的 CASE WHEN THEN

随记

THEN 后跟数字 对于SQL: create table tb(col int); insert tb select 1 union all select 2 union all select 3; /**实现2、1、3这样排序**/ select * from tb order by case col when 2 then 0 when 1 then ...