A. chvg -a y testvg
B. chfs -A yes /test
C. mount /test -auto=yes
D. chlv -a automount=y testlv
第1题:
A.Usethe-Xflagonthesavevgcommand
B.Putanentryinthe/etc/exclude.testvgfile
C.Removethe/test/staticentriesfromthe/vgdata/testvg.datafile
D.Usethetouchcommandtocreate/test/static/.excludebeforeusingsavevg
第2题:
在下面的运算符重载函数的原型中,错误的是( )。
A.Volume operator-(double,double);
B.double Volume::operator-(double);
C.Volume Volume::operator-(Volume);
D.Volume operator-(Volume,Volume);
第3题:
在下面的二目运算符重载函数的原型中,错误的是:
A.volume operator-(double,double);
B.double volume::operator-(double);
C.volume volume ::operator-(volume);
D.volume operator-(volume,volume);
第4题:
在下面的运算符重载函数的原型中,错误的是( )。
A.Volume operator-(double,dpible);
B.double Volume::operator-(double);
C.Volume Volume::operator-(Volume);
D.Volume operator-(Volume);
第5题:
在下面的运算符重载函数的原型中,错误的是:
A.volume operator-(double,double);
B.double volume::operator-(double);
C.volume volume ::operator-(volume);
D.volume operator-(volume,volume);
第6题:
C++17中,构造路径对象正确的代码是
A.namespace fs=std:filesystem; fs::path b{"C:/Users"}; b = b / "cyd";
B.std::filesystem::path r{"C:Windows"}; r.append("System32");
C.std::filesystem::path r{"C:Windows"}; r += "System32";
D.std::filesystem::path p{"/home"}; r += "cyd";
E.using fs=std:filesystem; fs::path p {"/home"}; p /= "cyd";