摘要: 左侧位移 :<< 表示这个数乘以2的n次方 右侧位移:>> 表示这个数除以2的n次方 y<<1 等价于 y*(Math.pow(2, 1)) y<<2 等价于 y*(Math.pow(2, 2)) y<<3 等价于 y*(Math.pow(2, 3)) y<<4 等价于 y*(Math.pow(2, 阅读全文
posted @ 2020-11-10 21:31 图图小淘气_real 阅读(152) 评论(0) 推荐(0) 编辑
摘要: Springmvc 通过return "redirect:" 实现重定向 重定向的状态码301 302 301,302 都是HTTP状态的编码,都代表着某个URL发生了转移,不同之处在于: 301 redirect: 301 代表永久性转移(Permanently Moved)。 302 redir 阅读全文
posted @ 2020-11-10 11:02 图图小淘气_real 阅读(701) 评论(0) 推荐(0) 编辑
摘要: 一:@RequestBody和@RequestParam区别 @RequestParam用来处理Content-Type: 为 application/x-www-form-urlencoded编码的内容。(Http协议中,如果不指定Content-Type,则默认传递的参数就是applicatio 阅读全文
posted @ 2020-11-10 10:59 图图小淘气_real 阅读(285) 评论(0) 推荐(0) 编辑