print_result.h 866 B

1234567891011121314151617181920212223242526272829303132
  1. #ifndef NANXING_TEST_PRINT_
  2. #define NANXING_TEST_PRINT_
  3. #include<fstream>
  4. #include<string>
  5. #include<iostream>
  6. #include<type_traits>
  7. namespace nanxing_test{
  8. template<typename K>
  9. using void_t=void;
  10. template<typename K,typename V=void>
  11. struct ofstream_admit:std::false_type{};
  12. template<typename K>
  13. struct ofstream_admit<K,void_t<decltype(std::declval<std::ofstream&>()<<std::declval<K>())>>:std::true_type{};
  14. template<typename T>
  15. static void inseat_result_to_txt(T result)
  16. {
  17. static_assert(ofstream_admit<T>::value,"The type of T cannot print by ofstream");
  18. std::ofstream output("../../test_result.txt",std::ios_base::app);
  19. if(!output.is_open())
  20. {
  21. std::cerr << "Failed to open the file." << std::endl;
  22. }
  23. output<<result<<std::endl;
  24. output.close();
  25. }
  26. }
  27. #endif