摘要:
制作根文件系统 使用busybox制作根文件系统(ext4) wget https://busybox.net/downloads/busybox-1.36.1.tar.bz2 tar -jxvf busybox-1.36.1.tar.bz2 cd busybox-1.36.1 make menuc 阅读全文
摘要:
#include <iostream> using namespace std; class interface{ public: virtual int getAge()=0; virtual int getAge1()=0; }; class person:virtual public inte 阅读全文