# 卸载已挂载的设备 sudo umount /dev/sda5 mount -o rw /run/***# ***为具体哪个盘 ...
分类:
Web程序 时间:
2020-02-01 16:25:00
阅读次数:
111
【学习资料】 > 在线文档 官方文档:https://docs.microsoft.com/zh-cn/dotnet/csharp/ 菜鸟教程(高级教程):https://www.runoob.com/csharp/csharp-tutorial.html > 视频教程 腾讯学院、Siki学院 > ...
分类:
编程语言 时间:
2020-01-31 01:09:47
阅读次数:
241
【学习资料】 > 在线文档 官方文档:https://docs.microsoft.com/zh-cn/dotnet/csharp/ 菜鸟教程(高级教程):https://www.runoob.com/csharp/csharp-tutorial.html > 视频教程 腾讯学院、Siki学院 > ...
分类:
编程语言 时间:
2020-01-30 22:46:34
阅读次数:
146
【学习资料】 > 在线文档 官方文档:https://docs.microsoft.com/zh-cn/dotnet/csharp/ 菜鸟教程(高级教程):https://www.runoob.com/csharp/csharp-tutorial.html > 视频教程 腾讯学院、Siki学院 > ...
分类:
编程语言 时间:
2020-01-30 22:44:30
阅读次数:
86
1. Dockerfile文件 FROM centos:7 MAINTAINER digdeep@126.com ADD jdk-8u181-linux-x64.tar.gz /usr/local ENV JAVA_HOME /usr/local/jdk1.8.0_181 ADD http://mi ...
分类:
编程语言 时间:
2020-01-30 17:01:19
阅读次数:
80
在gradle.properties中添加如下代码即可 android.enableJetifier=true android.useAndroidX=true ...
分类:
移动开发 时间:
2020-01-30 11:18:46
阅读次数:
204
【学习资料】 > 在线文档 官方文档:https://docs.microsoft.com/zh-cn/dotnet/csharp/ 菜鸟教程(高级教程):https://www.runoob.com/csharp/csharp-tutorial.html > 视频教程 腾讯学院、Siki学院 > ...
分类:
编程语言 时间:
2020-01-28 23:29:59
阅读次数:
116
https://codeforces.com/contest/1283/problem/C 题意:n个人相互送礼物,每个只能送一份礼物且接收一份礼物,不能自己送自己。 给出n个数,0代表第i个人不知道送礼物给谁(最少有两个0)。要求给出完整的n人送礼物方案。 解法:两个数组分别储存谁没收到礼物和谁不 ...
分类:
其他好文 时间:
2020-01-28 16:00:15
阅读次数:
121
【学习资料】 > 在线文档 官方文档:https://docs.microsoft.com/zh-cn/dotnet/csharp/ 菜鸟教程:https://www.runoob.com/csharp/csharp-tutorial.html > 视频教程 腾讯学院、Siki学院 > 书籍 《C# ...
分类:
编程语言 时间:
2020-01-27 23:35:06
阅读次数:
116
c++中标准库中有很多自由方法,比如swap,copy,从这个方面入手深入学习c++。 int casts[10] = {10,21,21,12,121,2,1,12,290,12}; vector<int> vect(10); copy(casts,casts+10,vect.begin()); ...
分类:
编程语言 时间:
2020-01-24 23:48:41
阅读次数:
152