2023年09月的文章

Debian10系统修改主机名-麦兜博客

Debian10系统修改主机名

1.修改/etc/hostname文件中的内容为新主机名2.修改/etc/hosts文件中对应的之前的主机名为新主机名3.执行hostname [新主机名] 命令临时修改,否则要下次重启生效
1年前
17213
Centos7更新grub配置-麦兜博客

Centos7更新grub配置

在Debian系操作系统,修改grub配置后,要想使其生效用的命令是update-grub,但在Centos下会提示命令找不到,可使用以下命令来代替 grub2-mkconfig -o /boot/grub2/grub.cfg
1年前
14211
对list集合分页-麦兜博客

对list集合分页

Java代码 public static <T> List<T> startPage(List<T> list, Integer pageNum, Integer pageSize) { Objects.requireNonNull(list); if (list.isEmpty()) { return Collections.empt...
1年前
20714
C++实现split函数-麦兜博客

C++实现split函数

#include <string> #include <vector> vector<string> split(string s, string p){ vector<string> res; std::string::size_type i = 0; std::string::size_type found = s.find(p)...
1年前
2327