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.
マクロで整数を正しく連結する方法は? 「、」(エラー)の後に何かを追加できないため、ここで2回呼び出す必要があります
#define concat(a,b,c) a##b##c dim as integer a=10,b=20,c=30,d d = a concat(*100+,,)b d = d concat(*100+,,)c ?d 'output = 102030 sleep