#include "stdafx.h"

#include
#include
using namespace std;
bool isShorter( string &s1, string s2,string *s3){
s1="change s1";
s2="change s2";
(*s3)="change s3";
return s1.size()}
int main(int argc, char* argv[])
{
string s1=" my name is s1";
string s2=" my name is s2";
string s3=" my name is s3";
isShorter(s1,s2,&s3);

cout< cout< cout< return 0;
}

out:change s1

       my name is s2

      change s3;

总结:C++中只有两种传递方式:值传递和引用传递。

       对象形参和指针形参都是值传递,形参要复制实参的值;引用形参是对象的别名,是对象本身。