如果输入参数采用“指针传递”,那么加 const 修饰可以防止意外地改动该指针,起 到保护作用。 1#include <iostream>23/*run this program using the console pauser or add your own getch, system("pause") or input loop*/4usingnamespacestd;5//定义栈的尺寸6constintSIZE =100;78//定义处理栈的类模板接口...
(1) const修饰常与引用传递一起使用; (2) 对于非内部数据类型的输入参数,“const引用传递”比“值传递”更高效,且能控制数据不被修改; (3) 对于基本数据类型一般不用引用传递,除非有明确的目的,例如利用其返回值; (4) 如果参数作输出用,不论其类型,都不能加const修饰,否则该参数将失去输出功能相关...
如果输入参数采用“指针传递”,那么加 const 修饰可以防止意外地改动该指针,起 到保护作用。 1#include <iostream>23/*run this program using the console pauser or add your own getch, system("pause") or input loop*/4usingnamespacestd;5//定义栈的尺寸6constintSIZE =100;78//定义处理栈的类模板接口...