摘要:
// three equivalent definitions of printValuesvoid printValues(int*) { /* ... */ }void printValues(int[]) { /* ... */ }void printValues(int[10]) { /* ... */ }等价,都是int*编译器忽略为任何数组形参指定的长度。// parameter tr... 阅读全文
posted @ 2009-01-26 18:07
米斯特刘
阅读(404)
评论(0)
推荐(0)