转载:boost库常用组件的使用

本文介绍了Boost库中的九个常用组件,包括boost::any、boost::array、boost::lexical_cast等,并通过示例代码展示了这些组件的基本用法及特点。

boost库的常用组件的使用

(忘了文章出处,望作者原谅)

boost::any
boost::any是一种通用的数据类型,可以将各种类型包装后统一放入容器内,最重要的它是类型安全的。有点象COM里面的variant。
使用方法:
any::type() 返回包装的类型
any_cast可用于any到其他类型的转化

#include <boost/any.hpp>

void test_any()
{
    typedef std::vector<boost::any> many;
    many a;

    a.push_back(2);
    a.push_back(string("test"));

    for(unsigned int i=0;i<a.size();++i)
    {
        cout<<a[i].type().name()<<endl;
        try
        {
            int result = boost::any_cast<int>(a[i]);
            cout<<result<<endl;
        }
        catch(boost::bad_any_cast & ex)
        {
            cout<<"cast error:"<<ex.what()<<endl;
        }
    }
 }

2.boost::array
boost::array仅仅是对数组一层薄薄的封装,提供跟各种算法配合的iterator,使用方法很简单。注意:可以使用{}来初始化array,因为array所有的成员变量都是public的。

#include <boost/array.hpp>

void test_array()
{
    boost::array<int,10> ai = {1,2,3};

    for(size_t i=0;i<ai.size();++i)
    {
        cout<<ai[i]<<endl;

    }
}

3.boost::lexical_cast
lexical_cast用于将字符串转换成各种数字类型(int,float,short etc.)。

#include <boost/lexical_cast.hpp>

void test_lexical_cast()
{
    int i = boost::lexical_cast<int>("123");

    cout << i << endl;
}

4.boost::format
boost::format是用于替代c里面的sprintf,优点是类型安全,不会因为类型和参数不匹配而导致程序崩溃了,而且还可以重复使用参数。

#include <boost/format.hpp>

void test_format()
{
    cout << boost::format("writing %1%,  x=%2% : %3%-th try") % "toto" % 40.23 % 50 <<endl; 

    boost::format f("a=%1%,b=%2%,c=%3%,a=%1%");
    f % "string" % 2 % 10.0;

    cout << f.str() << endl;
}

5.boost::tokenizer
boost::tokenizer是用于切割字符串的,类似于Java里面的StringTokenizer。
 
#include <boost/tokenizer.hpp>

void test_tokenizer()
{
    string s("This is  , a ,test!");

    boost::tokenizer<> tok(s);
    
    for(boost::tokenizer<>::iterator beg=tok.begin(); beg!=tok.end();++beg)
    {
         cout << *beg << "/n";
    }
}

6.boost::thread
boost::thread是为了提供跨平台的thread机制。利用boost::function来完成委托。

#include <boost/thread.hpp>

void mythread()
{
    cout<<"hello,thread!"<<endl;
}

void test_thread()
{
    boost::function< void () > f(mythread);
    boost::thread t(f);

    t.join();
    cout<<"thread is over!"<<endl;
}
 
7.boost::serialization
boost::serialization提供object的序列化功能。而且提供好几种序列化的格式,比如text,binary,xml。
 
#include <boost/archive/text_oarchive.hpp>
#include <boost/archive/text_iarchive.hpp>
#include <boost/archive/xml_oarchive.hpp>

void test_serialization()
{
    boost::archive::text_oarchive to(cout , boost::archive::no_header);
    int i = 10;
    string s = "This is a test/n";

    to & i;
    to & s;

    ofstream f("test.xml");
    boost::archive::xml_oarchive xo(f);

    xo & BOOST_SERIALIZATION_NVP(i) & BOOST_SERIALIZATION_NVP(s);

    boost::archive::text_iarchive ti(cin , boost::archive::no_header);

    ti & i & s;
    cout <<"i="<< i << endl;
    cout <<"s="<< s << endl;
}

8.boost::function
boost::function就是所谓的泛函数,能够对普通函数指针,成员函数指针,functor进行委托,达到迟调用的效果。
 
#include <boost/function.hpp>

int foo(int x,int y)
{
    cout<< "(foo invoking)x = "<<x << " y = "<< y <<endl;
    return x+y;
}

struct test
{
    int foo(int x,int y)
   {
       cout<< "(test::foo invoking)x = "<<x << " y = "<< y <<endl;
       return x+y;
   }
};
 
void test_function()
{
    boost::function<int (int,int)> f;

    f = foo;
    cout << "f(2,3)="<<f(2,3)<<endl;
 
    test x;
    /*f = std::bind1st(std::mem_fun(&test::foo), &x);*/
    boost::function<int (test*,int,int)> f2;

    f2 = &test::foo;

    cout << "f2(5,3)="<<f2(&x,5,3)<<endl;
}

9.boost::shared_ptr
boost::shared_ptr就是智能指针的实现,不象std::auto_ptr,它是可以stl的容器一起使用的,非常的方便。

#include <boost/shared_ptr.hpp>
class Shared
{
public:
    Shared()
    {
        cout << "ctor() called"<<endl;
    }

    Shared(const Shared & other)
    {
        cout << "copy ctor() called"<<endl;
    }

    ~Shared()
    {
        cout << "dtor() called"<<endl;
    }

   Shared & operator = (const Shared & other)
   {
       cout << "operator =  called"<<endl;
   }
};

void test_shared_ptr()
{
    typedef boost::shared_ptr<Shared> SharedSP;
    typedef vector<SharedSP> VShared;
    VShared v;

    v.push_back(SharedSP(new Shared()));
    v.push_back(SharedSP(new Shared()));
内容概要:本文围绕基于风光储能和需求响应的微电网日前经济调度问题,提出了一套完整的Python代码实现方案。研究综合考虑风能、光伏等可再生能源的出力不确定性、储能系统的动态充放电特性以及需求侧响应机制,构建了以最小化系统综合运行成本为目标的优化调度模型。该模型充分体现了对可再生能源的高效消纳、系统经济性提升与供需平衡调控的能力,通过Python编程结合优化求解器实现了模型的求解与仿真验证,为微电网能量管理系统的设计与科研分析提供了可复现的技术路径与实践参考。; 适合人群:具备一定Python编程基础和电力系统优化调度知识的科研人员、工程技术人员及高校电气工程、能源系统等相关专业的研究生。; 使用场景及目标:①应用于微电网、智能配电网及综合能源系统的科研建模与仿真分析;②帮助读者深入理解含高比例可再生能源的电力系统日前调度建模方法、目标函数构造与约束条件处理技巧;③为实际工程中实现低碳、经济、可靠的微电网运行提供算法支持与决策依据。; 阅读建议:建议读者结合文档中的代码实例,系统学习优化模型的数学表达与编程实现过程,重点关注变量定义、目标函数构建、系统约束(如功率平衡、储能动态、机组出力等)的编码实现,并尝试调整负荷、新能源出力等输入数据进行多场景仿真,以深入掌握微电网调度策略的灵敏度分析与优化效果评估方法。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值