当前位置: 首页>>代码示例>>C++>>正文


C++ TextFile::getCoding方法代码示例

本文整理汇总了C++中TextFile::getCoding方法的典型用法代码示例。如果您正苦于以下问题:C++ TextFile::getCoding方法的具体用法?C++ TextFile::getCoding怎么用?C++ TextFile::getCoding使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在TextFile的用法示例。


在下文中一共展示了TextFile::getCoding方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。

示例1: main

int main()
{
    File f;
    f.setName("file");
    cout << f.getName() << endl;
    cout << f.getSize() << endl;
    cout << f.getFileTime();
    cout << "#####################################" << endl;

    TextFile t;
    t.setName("textFile");
    t.setCoding(1);
    cout << t.getName() << endl;
    cout << t.getSize() << endl;
    cout << t.getFileTime();
    cout << t.getCoding() << endl;
    cout << "#####################################" << endl;

    IniFile i;
    i.setName("iniFile");
    i.setCoding(0);
    i.setForProgram("QQ");
    cout << i.getName() << endl;
    cout << i.getSize() << endl;
    cout << i.getFileTime();
    cout << i.getCoding() << endl;
    cout << i.getForProgram() << endl;
    cout << "#####################################" << endl;

    XmlFile x;
    x.setName("xmlFile");
    x.setCoding(0);
    x.setVersion("1.1.123");
    cout << x.getName() << endl;
    cout << x.getSize() << endl;
    cout << x.getFileTime();
    cout << x.getVersion() << endl;
    cout << "#####################################" << endl;

    BinaryFile b;
    b.setName("binaryFile");
    b.setInSystem("Linux");
    cout << b.getName() << endl;
    cout << b.getSize() << endl;
    cout << b.getFileTime();
    cout << b.getInSystem() << endl;
    cout << "#####################################" << endl;

    MediaFile m;
    m.setName("mediaFile");
    m.setInSystem("Mac OS X");
    m.setTheQuality(high);
    cout << m.getName() << endl;
    cout << m.getSize() << endl;
    cout << m.getFileTime();
    cout << m.getInSystem() << endl;
    cout << m.getTheQuality() << endl;
    cout << "#####################################" << endl;

    ExeFile e;
    e.setName("exeFile");
    e.setInSystem("Windows");
    e.setTheAllRight(administrator);
    cout << e.getName() << endl;
    cout << e.getSize() << endl;
    cout << e.getFileTime();
    cout << e.getInSystem() << endl;
    cout << e.getTheAllRight() << endl;
    cout << "#####################################" << endl;

    XmlMediaFile xm;
    xm.XmlFile::setName("xmlMediaFile");
    xm.setInSystem("Windows");
    xm.setCoding(0);
    xm.setVersion("2.2.2.222");
    xm.setTheQuality(high);
    xm.setTheDevice(Windows);
    cout << xm.XmlFile::getName() << endl;
    cout << xm.XmlFile::getSize() << endl;
    cout << xm.XmlFile::getFileTime();
    cout << xm.getCoding() << endl;
    cout << xm.getInSystem() << endl;
    cout << xm.getVersion() << endl;
    cout << xm.getTheQuality() << endl;
    cout << xm.getTheDevice() << endl;

    return 0;
}
开发者ID:xyx9436,项目名称:learning,代码行数:88,代码来源:main.cpp


注:本文中的TextFile::getCoding方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。