msvcとclangでコルーチンの挙動が違うのですが、これは仕様上どちらでも大丈夫なのでしょうか?
C++
1#include <iostream> 2#include <experimental/coroutine> 3 4namespace stdex = std::experimental; 5 6#define OUTPUT_FUNCNAME std::cout<<__func__<<std::endl 7 8template<typename T> 9struct coroutine 10{ 11 struct promise_type 12 { 13 T value{}; 14 auto get_return_object() 15 { 16 OUTPUT_FUNCNAME; 17 return coroutine{ *this }; 18 } 19 auto initial_suspend() 20 { 21 OUTPUT_FUNCNAME; 22 return stdex::suspend_always{}; 23 } 24 auto final_suspend() 25 { 26 return stdex::suspend_always{}; 27 } 28 auto yield_value(const T& _value) 29 { 30 value = _value; 31 return stdex::suspend_always{}; 32 } 33 void return_void(){} 34 void unhandled_exception(){} 35 }; 36 using coro_handle = stdex::coroutine_handle<promise_type>; 37 ~coroutine() 38 { 39 if (coro)coro.destroy(); 40 } 41 coroutine(const coroutine&) = delete; 42 coroutine(coroutine&& rhs)noexcept 43 :coro{ std::exchange(rhs.coro,nullptr) }{} 44 45 T get_value() 46 { 47 coro.resume(); 48 return coro.promise().value; 49 } 50 51private: 52 explicit coroutine(promise_type& p) 53 :coro{ coro_handle::from_promise(p) }{} 54 55 coro_handle coro; 56}; 57 58coroutine<int> Fn() 59{ 60 co_return; 61} 62 63int main() 64{ 65 auto coro = Fn(); 66 return 0; 67}
vc++での出力結果 initial_suspend get_return_object
clangでの出力結果 get_return_object initial_suspend
順番が逆ですが、ここの処理の順番は未規定や実装依存ですか?
追記:gccも追加
gccでの出力結果 get_return_object initial_suspend
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。