2

我有一个用 boost::xpressive 编写的非常短的程序


#include <iostream>
#include <boost/xpressive/xpressive.hpp>

using namespace boost::xpressive;

int main()
{
    std::string hello( "hello world!" );

    sregex rex = sregex::compile( "(\\w+) (\\w+)!" );
    smatch what;

    if( regex_match( hello, what, rex ) )
    {
        std::cout << what[0] << '\n'; // whole match
        std::cout << what[1] << '\n'; // first capture
        std::cout << what[2] << '\n'; // second capture
    }

    return 0;
}

这是 Xpressive 的“hello world”。编译时间比普通的 hello world 要长得多。我认为这是因为 xpressive.hpp 文件太大了。有没有办法预编译或预处理 .hpp 文件,这样编译会快得多?

4

1 回答 1

6

如果您的编译器支持,您可以使用预编译头文件;我怀疑g++Visual C++都支持预编译的头文件,就像大多数其他现代 C++ 编译器一样。

于 2010-05-08T17:08:24.073 回答