No. a Variable Argument function (such as printf
), must "know" when to stop looking for more arguments.
printf
knows by the number of %d
, %s
and other symbols in its format string.
Other functions sometimes use Sentinel values:
sumValues(1, 3, 5, 7, 6, 9, -1); // will add numbers until it encounters a -1
Other functions may have the number of parameters stated up front:
AddNames(4, "Bill", "Alice", "Mike", "Tom");
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…