📄 odr2.cpp
字号:
// Copyright (C) 2004 Arkadiy Vertleyb// Use, modification and distribution is subject to the Boost Software// License, Version 1.0. (http://www.boost.org/LICENSE_1_0.txt)#include <iostream>#include "odr.hpp"using namespace std;void odr_test2(){ char i = 5; double d = 3.14; cout << sum(d, i) << endl; cout << sum(i, d) << endl; cout << make_sum(d, i)() << endl; cout << make_sum(i, d)() << endl; }
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -