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


C++ Weather::GetWeather方法代码示例

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


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

示例1: main

int main ()
{
    Weather *ww = new Weather(CITYID_GET_URL);
    int errInfo = ww->GetWeatherInfo(WeatherInfoURL_CountryCenter, AirQualityInfoURL_Xiaomi);
    cout << "main::" << endl;

    cout << ww->GetCity(0) << "  ";
    cout << ww->GetCity(1) << "  ";

    int time = 23;
    if ((time < 18) && (time > 7))
        cout << ww->GetImgNo(0) << "  ";
    else
        cout << ww->GetImgNo(1) << "  ";
    if (ww->GetImgNo(1) >= ImgNO_UnDef)
        cout << ImgNO_UnDef << "  ";

    cout << ww->GetTemp() << "  ";
    cout << ww->GetWeather() << "  ";

    cout << ww->GetAQI() << "  ";
    cout << ww->GetPM10() << "  ";
    cout << ww->GetPM25() << "  ";
    cout << ww->GetNO2() << "  ";
    cout << ww->GetSO2() << "  ";

    cout << endl;

    std::string errCode;
    if (errInfo & 1) { // get cityID error
        errCode = ERROR_GET_CITYID;
        cout << "error get city id..." << errCode << endl;
    } else {
        if (errInfo & (1 << 1)) { // get weather info error
            errCode = ERROR_GET_WEATHER;
            cout << "error get city id..." << errCode << endl;
        }
        if (errInfo & (1 << 2)) { // get aqi info error
            errCode = ERROR_GET_AQI;
            cout << "error get city id..." << errCode << endl;
        }
    }

#if TEST_HttpGet
    std::string content = HttpGet00(WeatherInfoBACKURL_CountryCenter);
    cout << "main:" << content << endl;
#endif
    return 0;
}
开发者ID:github188,项目名称:SimpleCode,代码行数:49,代码来源:WeatherMain.cpp


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