Post

touch fish 31

尝试 io_uring 低层接口编程

LevelDB 源码阅读:如何优雅地合并写入和删除操作

一个由 BGP Route Aggregation 引发的问题

The case of the crash when trying to erase an element from a std::set

In a C++ class template specialization, how can I call the unspecialized version of a method?

A simplified overview of ways to add or update elements in a std::map

Inside STL: Waiting for a std::atomic<std::shared_ptr> to change

Reminder: When a C++ object fails to construct, the destructor does not run

Why does inadvertently passing a std::string instead of a char const* to a variadic function crash on x86-32 but not x86-64?

Writing Compilers

std::endl

1
2
3
4
5
6
7
8
9
10
11
12
13
  /**
   *  @brief  Write a newline and flush the stream.
   *
   *  This manipulator is often mistakenly used when a simple newline is
   *  desired, leading to poor buffering performance.  See
   *  https://gcc.gnu.org/onlinedocs/libstdc++/manual/streambufs.html#io.streambuf.buffering
   *  for more on this subject.
  */
  template<typename _CharT, typename _Traits>
    inline basic_ostream<_CharT, _Traits>&
    endl(basic_ostream<_CharT, _Traits>& __os)
    { return flush(__os.put(__os.widen('\n'))); }

写\n然后flush,flush会带来性能问题

neighborhas

This post is licensed under CC BY 4.0 by the author.

Trending Tags