Pascal 可变数量的函数参数
Pascal variable number of function arguments
我想在Pascal上实现下一个功能
unsigned long SUBSTRINGS(sqlrcur *curref, ... )
{
va_list ap;
int argc, I;
.....
}
我怎样才能在 Pascal 上做到这一点?可能吗?
根据rosettacode,
Standard Pascal does not allow variadic functions.
See Free Pascal instead.
另见 Pascal - How to pass variable number of parameters to a subprogram ? (variadic function)
我想在Pascal上实现下一个功能
unsigned long SUBSTRINGS(sqlrcur *curref, ... )
{
va_list ap;
int argc, I;
.....
}
我怎样才能在 Pascal 上做到这一点?可能吗?
根据rosettacode,
Standard Pascal does not allow variadic functions.
See Free Pascal instead.
另见 Pascal - How to pass variable number of parameters to a subprogram ? (variadic function)