预备
测试代码 main.cpp
#include <iostream>
#include <vector>
#include "student.h"using namespace std;int add(int a, int b)
{return a b;
}int main()
{vector<int> v {1, 3};Student* s1 new Student("zz", 20);Student* …
文章目录 问题现象异常原因解决方案 问题现象
在启动虚拟机的时候,不能正常的进入图形界面,报 “The system is running in low-graphics mode” 错误。
异常原因
启动界面的xorg.conf文件失败并删除。
解决方案
1、点击异常界面上的 “ok”后&…