如何引用m4宏中的最后一个参数

时间:2013-06-06 11:59:16

标签: macros m4

如何引用m4宏中给定参数列表中的最后一个参数?我需要拉出最后一个参数并根据它生成宏扩展。

2 个答案:

答案 0 :(得分:2)

这不是特别优雅,但它有效:

define(`last',`ifelse(`$#',`0',`',`$#',`1',`$1',`last(shift($@))')')dnl
last(foo,bar,baz)

答案 1 :(得分:0)

# more elegant solution:
changequote([,])
define([LEN], [$#])
define([LAST], [pushdef([$0], $LEN($@))$0($@)[]popdef([$0])])
define([LAST_BUT_ONE], [pushdef([$0], $decr(LEN($@)))$0($@)[]popdef([$0])])

LAST(foo, bar, baz)

LAST_BUT_ONE(foo, bar, baz)