Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
可変個引数マクロをアンパックするトリックはありますか? 例えば、
#define READ(...)引数を1つずつ読み取ることを意味します
#define READ(...)
READ(a, b, c)に解凍されますread(a); read(b); read(c)
READ(a, b, c)
read(a); read(b); read(c)