上一页 1 2 3 4 5 6 ··· 12 下一页
摘要: Notes They make code more consise We declare and instantiate them at the same time They like local classes but don't have a name We use them when we n 阅读全文
posted @ 2020-08-08 22:18 deep-thinking 阅读(139) 评论(0) 推荐(0) 编辑
摘要: Notes: Local classes are classes that are defined in a block. We typically find local classes defined in the body of a method. Declaring Local Classes 阅读全文
posted @ 2020-08-08 16:38 deep-thinking 阅读(110) 评论(0) 推荐(0) 编辑
摘要: Note: Parameters refers to the list of variables in a method declaration. Arguments are the actual values that are passed in when the method is invoke 阅读全文
posted @ 2020-08-08 12:00 deep-thinking 阅读(91) 评论(0) 推荐(0) 编辑
摘要: 一、Introduction 1. What is Java Serialization? Java Serialization is the process of converting the state information of JavaTM objects into a form(byte 阅读全文
posted @ 2020-07-31 17:31 deep-thinking 阅读(96) 评论(0) 推荐(0) 编辑
摘要: 1. 不是参数名字和参数类型错误 2. 也不是代理 http 和 https 对应错误 原因: 在 axios 请求后,传参逻辑只能放在 if 代码块中,不能放在 axios 代码块外面 如图: 阅读全文
posted @ 2020-05-27 11:41 deep-thinking 阅读(270) 评论(0) 推荐(0) 编辑
摘要: 什么是回调(函数)? 1. 用户把自定义函数作为参数传入给系统函数(注册自定义函数),然后调用系统函数(系统调用) 2. 系统函数在执行过程中又调用用户自定义函数,这个过程就是回调 总结: 用户将自己的函数传递给系统函数,让系统函数去调用自定义的函数,实现函数定制功能。 参考链接:https://w 阅读全文
posted @ 2020-05-22 12:12 deep-thinking 阅读(208) 评论(0) 推荐(0) 编辑
摘要: 页面原始效果: 发现问题:如何去除边界留白? 解决问题:在<body> 标签上添加样式 style = "margin: 0; padding: 0" 总结经验:<body> 标签自带留白样式,需要手动覆盖 阅读全文
posted @ 2020-05-21 16:43 deep-thinking 阅读(881) 评论(0) 推荐(0) 编辑
摘要: 三步: 1. 鼠标定位到空白页,按 ctrl + g 2. 选择定位,输入 \page,点击定位,然后关闭 3. 按 delete 键 阅读全文
posted @ 2020-04-27 11:36 deep-thinking 阅读(1161) 评论(0) 推荐(0) 编辑
摘要: 背景: 1. RIP 由于限制了自治系统的规模(最大跳数16),因此大型自制系统使用 OSPF 而不使用 RIP。 2. OSPF 最大的特点是收敛快(坏消息传的快),原因是路由器通过洪泛法向系统内的所有路由器发送部分路由信息(而不是 RIP 发送整个路由表)。 3. 洪泛法是指一个路由器发送的数据 阅读全文
posted @ 2020-04-03 15:14 deep-thinking 阅读(380) 评论(0) 推荐(0) 编辑
摘要: 背景: 在小型网络(路由器数目少)中网络管理人员手工配置路由信息,而在大型网络手工配置路由表不现实,故给路由器安装一个程序(路由协议), 让它自动学习路由,自动生成自己的路由表。 RIP 距离向量路由算法: 1. 在自治系统内(系统内所有的路由器统一使用某个路由协议进行路由管理),每个路由器与自己相 阅读全文
posted @ 2020-04-03 14:35 deep-thinking 阅读(3423) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 12 下一页