本文分类:news发布日期:2024/11/30 14:47:31
相关文章
Codeforces Round 949 (Div. 2 ABCD) 视频讲解
A. Turtle and Piggy Are Playing a Game
Problem Statement
Turtle and Piggy are playing a number game.
First, Turtle will choose an integer x x x, such that l ≤ x ≤ r l \le x \le r l≤x≤r, where l , r l, r l,r are given. It’s also guaranteed that …
建站知识
2024/11/30 14:40:02
CDN——内容分发网络
目录
为什么使用CDN
CDN是如何工作的
类型
推模式(Push)
拉模式(Pull)
缺点
例子 内容分发网络(CDN)是一组在地理上广泛分布的服务器,它们一起工作以提供互联网内容的快速交付。通常静态…
建站知识
2024/10/5 19:57:53
Lua的几个特殊用法
:/.的区别
详细可以参考https://zhuanlan.zhihu.com/p/651619116。最重要的不同就是传递默认参数self。 通过.调用函数,传递self实例 通过 : 调用函数,传递self (不需要显示的传递self参数,默认就会传递,但…
建站知识
2024/11/10 10:57:42
异常(Exception)
捕获异常 public class test {public static void main(String [] args) {int[] arr {1,2,3,4,5};try {System.out.println(arr[10]);}catch (ArrayIndexOutOfBoundsException e) {//索引越界异常System.out.println("索引越界");}System.out.println("看看我是…
建站知识
2024/10/25 5:45:09