0%

Java SE Lesson 3:单例模式 接口中声明的方法都是抽象方法,抽象方法都是 public 的。 接口中也可以定义成员变量,接口中的成员变量都是 public、static、

Mac Big Sur 安装CocoaPods 切换homebrew为中科大源 # 替换各个源 git -C "$(brew --repo)" remote set-url origin https://mirrors.ustc.edu.cn/brew.git git -C "$(brew --repo homebrew/core)" remote set-url origin https://mirrors.ustc.edu.cn/homebrew-core.git git -C "$(brew --repo homebrew/cask)" remote set-url origin https://mirrors.ustc.edu.cn/homebrew-cask.git # zsh 替换 brew bintray 镜像 echo

【面试题库】001判定字符是否唯一 leetcode https://leetcode-cn.com/problems/is-unique-lcci/ 最差解法 class Solution { public boolean isUnique(String astr) { char[] strArray = astr.toCharArray(); for (int i = 0; i < strArray.length; i++) { char str = strArray[i]; for (int j = 0; j < strArray.length; j++) { if (i == j) { continue; } char newstr = strArray[j];

并发编程之多线程与并发设计原理 多线程回顾 Thread和Runnable Java中的线程 创建执行线程有两种方法: 继承 Thread 类 实现 Runnable 接口 继承 Thread 类的方

好的产品应该是不需要教用户怎么去用,也就说,不要增加不必要的步骤或者附加信息,让用户去猜。如果,用户用这个功能的学习成本变得很高,那么这个功

机器学习入门 人工智能机器学习需要哪些基本的知识呢? https://www.zhihu.com/question/57723381 学好机器学习需要哪些数学知识? https://zhuanlan.zhihu.com/p/36357540

Netty基于异步的线程模型。 Netty是事件驱动的框架。 Netty是一个网络框架。 Netty5被废弃 https://github.com/netty/netty/issues/4466