📄 mixed_binary_tests.cpp
字号:
/*=============================================================================
Phoenix v1.2
Copyright (c) 2001-2003 Joel de Guzman
Use, modification and distribution is subject to the Boost Software
License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
http://www.boost.org/LICENSE_1_0.txt)
==============================================================================*/
#include <iostream>
#include <string>
#include <cassert>
#define PHOENIX_LIMIT 15
#include <boost/spirit/phoenix/primitives.hpp>
#include <boost/spirit/phoenix/operators.hpp>
using namespace phoenix;
using namespace std;
///////////////////////////////////////////////////////////////////////////////
int
main()
{
int i1 = 1, i2 = 2, i50 = 50, i100 = 100;
double d2_5 = 2.5;
string hello = "hello";
const char* world = " world";
///////////////////////////////////////////////////////////////////////////////
//
// Mixed type operators
//
///////////////////////////////////////////////////////////////////////////////
assert((arg1 + arg2)(i100, i50) == (i100 + i50));
assert((arg1 + 3)(i100) == (3 + i100));
assert((arg1 + arg2)(hello, world) == "hello world");
assert((arg1 + arg2)(i1, d2_5) == (i1 + d2_5));
assert((*(arg1 + arg2))(world, i2) == *(world + i2));
assert((*(arg1 + arg2))(i2, world) == *(i2 + world));
assert((*(val(world+i2) - arg1))(i2) == *world);
///////////////////////////////////////////////////////////////////////////////
//
// End asserts
//
///////////////////////////////////////////////////////////////////////////////
cout << "///////////////////////////////////////////////////////////////////////////////\n";
cout << "\t\tTests concluded\n";
cout << "\t\tSUCCESS!!!\n";
cout << "///////////////////////////////////////////////////////////////////////////////\n";
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -