ubuntu20.04系统出现 仓库 “http://ppa.launchpad.net/fcitx-team/nightly/ubuntu xenial Release“ 没有Release文件sudo apt-get update 时vim /etc/apt/sources.listsudo apt-get updateuname -a
我们进行sudo apt-get update 时出现仓库 “http://ppa.launchpad.net/fcitx-team/nightly/ubuntu bionic Release” 没有 Release 文件。我看了很多文章,也逐个试了没有得到很好的解决,于是我从源头排查,首先检查镜像源,我特意找了最新的镜像源,但是问题就出在这里。官方的源已经更到了22.04版本对20.04已经不再维护支持,而我找的最新的源就是22.04的源,仓库里有东西但是不能安装,这个时候咱们直接更换镜像源
学习:switch中return后是否需要break
在switch中使用return:static int test(){ for(int i=0;i<3;i++){ System.out.println("i:"+i); switch (i){ case 0: return 1; case 1: return 2; case 2: