上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 16 下一页
摘要: 参数常见枚举值 O(Optional):表示参数是可选的。 M(Mandatory):表示参数是必填的。 其他可能的枚举值 R(Required):与“M”相似,表示参数是必需的。 C(Conditional):表示参数的必填性取决于其他参数的值或某些条件。 D(Default):表示参数有默认值, 阅读全文
posted @ 2023-12-07 11:24 Ashe|||^_^ 阅读(186) 评论(0) 推荐(0) 编辑
摘要: AOP(面向切面编程)是一种编程范式,它的目的是通过将横切关注点(如日志记录、事务管理、异常处理等)从主要业务逻辑中分离出来,以提高代码的模块化和可维护性。在异常处理方面,有人认为使用AOP来实现异常捕获能够提供更优雅的解决方案,相比于传统的try-catch块。 以下是一些可能的优势和注意事项: 阅读全文
posted @ 2023-11-28 21:38 Ashe|||^_^ 阅读(546) 评论(0) 推荐(0) 编辑
摘要: Sometimes I use chatGPT on Chrome, An error has occurred: Something went wrong. If this issue persists please contact us through our help center at he 阅读全文
posted @ 2023-11-09 22:56 Ashe|||^_^ 阅读(340) 评论(0) 推荐(0) 编辑
摘要: 闭包是指一个函数值(function value),它可以引用其函数体之外的变量 闭包代码示例 func makeSuffix() func(str string) string { var suffix = ".jpg" return func(str string) string { if st 阅读全文
posted @ 2023-10-31 21:03 Ashe|||^_^ 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 递归函数的两个特征 函数自己调用自己 一定存在某个条件来终止递归,以避免无限递归 func main() { // result is : 2 2 3 recursion(4) } func recursion(num int) { if num > 2 { num-- recursion(num) 阅读全文
posted @ 2023-10-30 23:55 Ashe|||^_^ 阅读(8) 评论(0) 推荐(0) 编辑
摘要: * * * * * * * * * * * * * * * * * * * * * * * * 需求:在控制台打印如上图所示的效果图 解题思路: 首先简化问题,用嵌套for循环打印出实心金字塔,由题可观察得知,层数与star(星号)数量保持着一定关系(奇数队列),1、3、5、7……2n-1 然后,格 阅读全文
posted @ 2023-10-30 22:01 Ashe|||^_^ 阅读(22) 评论(0) 推荐(0) 编辑
摘要: Upgrade Windows Home to Windows Pro for FREE Go to Settings > Update & Security > Activation and click Change Product Key. Next, enter the default Win 阅读全文
posted @ 2023-10-21 17:47 Ashe|||^_^ 阅读(70) 评论(0) 推荐(1) 编辑
摘要: 在解决并发安全问题的时候,思路其实就是将并发执行控制为串行执行,这就是锁的具体表现。 在传统的单机模式下,synchronized关键字、ReentrantLock、CAS等方案的单机锁是可行的,但是分布式架构的微服务,一个服务多个节点的场景就需要Redisson等分布式锁来处理。 经典的秒杀场景下 阅读全文
posted @ 2023-10-20 08:07 Ashe|||^_^ 阅读(61) 评论(0) 推荐(0) 编辑
摘要: reference https://docs.docker.com/get-started/overview/ Images An image is a read-only template with instructions for creating a Docker container. // 阅读全文
posted @ 2023-10-09 22:06 Ashe|||^_^ 阅读(28) 评论(0) 推荐(0) 编辑
摘要: yum remove docker-ce docker-ce-cli containerd.io // 卸载docker yum install -y yum-utils // 扩展和增强 yum 包管理器 # 配置docker安装源 yum-config-manager --add-repo ht 阅读全文
posted @ 2023-10-09 17:11 Ashe|||^_^ 阅读(8) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 16 下一页