随笔分类 -  ms

摘要:####ms 一.输入URL到看到页面经历了什么? 1.DNS域名解析2.建立TCP连接3.发送http请求4.服务端处理请求5.返回结果6.关闭TCP7.浏览器解析html8.浏览器渲染页面 二.finally中return? 1.会覆盖try中的返回值 public static int tes 阅读全文
posted @ 2021-05-26 16:24 菜鸟哟 阅读(41) 评论(0) 推荐(0)
摘要:public static void quick_sort(int low,int high,int[]arry){ int i,j,jizhun,temp; if (low>high){ return; } i = low; j = high; jizhun = arry[low]; while 阅读全文
posted @ 2021-05-24 07:22 菜鸟哟 阅读(52) 评论(0) 推荐(0)