C++语言基础 例程 函数中的引用

贺老师的教学链接  本课讲解

引用作为形参

#include<iostream>
using namespace std;
class Sample
{
    int x;
public:
    Sample(int a): x(a) {cout<<"A";}
    Sample(Sample &a): x(a.x) {cout<<"B";}
    int getX(){return x;}
};
void disp(Sample &s){cout<<s.getX();}
int main()
{
    Sample s1(2),s2(s1);
    disp(s1);
    return 0;
}

如果参形不用引用

class Sample
{
    int x;
public:
    Sample(int a): x(a) {cout<<"A";}
    Sample(Sample &a): x(a.x) {cout<<"B";}
    int getX(){return x;}
};
void disp(Sample s){cout<<s.getX();}
int main()
{
    Sample s1(2),s2(s1);
    disp(s1);
    return 0;
}

 

函数返回值——简单的返回值说起

#include <iostream>
using namespace std;
int aaa()
{
    int a = 5;
    return a; //值
}
int *bbb()
{
    int b[5]= {0};
    return b;//返回栈区的指针,潜在风险!有警告
}

int *ccc()
{
    static int c = 100;
    return &c; //静态区指针
}

int *ddd()
{
    int *p = new int(20);
    return p; //堆区指针
}

int main()
{
    int n = aaa();
    int *p1 = bbb();
    int *p2 = ccc();
    int *p3 = ddd();
    int b = 38;
    cout<<n<<endl;
    cout<<*p1<<endl;
    cout<<*p2<<endl;
    cout<<*p3<<endl;
    delete p3;
    return 0;
}

返回值为引用

#include <iostream>
using namespace std;
int aaa()
{
    int a = 5;
    return a; //值
}

int &bbb()
{
    int b = 0;
    return b;//返回对局部变量的引用,潜在风险!有警告
}

int &ccc()
{
    static int c = 100;
    return c; //值
}

int main()
{
    int n1 = aaa();
    int &n2 = bbb();
    int &n3 = ccc();
    cout<<n1<<endl;
    cout<<n2<<endl;
    cout<<n3<<endl;
    return 0;
}

 

返回值为非引用对象,返回值直接取栈中的结果

#include<iostream>
using namespace std;
class Sample
{
    int x;
public:
    Sample(){}
    Sample(int a): x(a) {cout<<"A";}
    ~Sample(){cout<<"B";}
    int getX(){return x;}
};

Sample copySample(Sample &a)
{
    Sample b(a.getX());
    cout<<"C";
    return b;
}

void disp(Sample &s)
{
    cout<<s.getX();
}

int main()
{
    Sample s1(2),s2;
    s2=copySample(s1);
    disp(s2);
    return 0;
}

返回值为引用对象时

#include<iostream>
using namespace std;
class Sample
{
    int x;
public:
    Sample(){}
    Sample(int a): x(a) {cout<<"A";}
    Sample(Sample &a): x(a.getX()){cout<<"D";}
    ~Sample(){cout<<"B";}
    int getX(){return x;}
};

Sample& copySample(Sample &a)
{
    Sample b(a.getX());
    cout<<"C";
    return b;
}

void disp(Sample &s)
{
    cout<<s.getX();
}

int main()   //(1)   输出AACBD2BB的测试函数
{
    Sample s1(2),s2=copySample(s1);
    disp(s2);
    return 0;
}
int main()   //(2)   输出AACB2BB的测试函数
{
    Sample s1(2),s2;
    s2=copySample(s1);
    disp(s2);
    return 0;
}

可以这样做!

#include<iostream>
using namespace std;
class Sample
{
    int x;
public:
    Sample(){}
    Sample(int a): x(a) {cout<<"A";}
    Sample(Sample &a): x(a.getX()){cout<<"D";}
    ~Sample(){cout<<"B";}
    int getX(){return x;} const
    void setX(int i){x=i;}
};

Sample& copySample(Sample &a, Sample &b)
{
    b.setX(a.getX());
    cout<<"C";
    return b;
}

void disp(Sample &s)
{
    cout<<s.getX();
}

int main()
{
    Sample s1(2),s2;
    s2=copySample(s1,s2);
    disp(s2);
    return 0;
}
时间: 2024-09-14 15:43:00

C++语言基础 例程 函数中的引用的相关文章

C++语言基础 例程 对象成员的引用

贺老师的教学链接  本课讲解 通过对象名和成员运算符访问对象中的成员 #include <iostream> using namespace std; class Time { public: void set_time( ); void show_time( ); private: int hour; int minute; int sec; }; int main( ) { Time t1; t1.set_time( ); t1.show_time( ); Time t2; t2.set_

C++语言基础 例程 函数重载

贺老师的教学链接 重载函数:同名同体,但接口不同 #include <iostream> using namespace std; int max(int a,int b,int c); //函数声明 double max(double a,double b,double c); long max(long a,long b,long c); int main( ) { int i1,i2,i3,i; cin>>i1>>i2>>i3; //输入3个整数 i=

C++语言基础 例程 函数模板

贺老师的教学链接 使用用函数模板 #include <iostream> using namespace std; template<typename T> //模板声明,其中T为类型参数 T max(T a,T b,T c) //定义一个通用函数,用T作虚拟的类型名 { if(b>a) a=b; if(c>a) a=c; return a; } int main( ) { int i1=185,i2=-76,i3=567; double d1=56.87,d2=90.

C++语言基础 例程 C++中的输入和输出

贺老师的教学链接 程序将自行识别符号 #include <iostream> using namespace std; int main() { int a,b; char op; cin>>a>>op>>b cout<<"result: "<<'\n'; cout<<"a: "<<a<<'\n'; cout<<"b: "<

va_list-c++动态参数函数中使用引用问题

问题描述 c++动态参数函数中使用引用问题 void fun(char* ftm, ...) { int temp = 10; va_list va; char* s1 = va_start(va,ftm); // 怎样为引用赋值? char outNum[_INTSIZEOF(int)]; sprintf_s(outNum, "%d", 10); memcpy((char*)va, outNum, _INTSIZEOF(int)); //*((int *)((va += _INTSI

《C++面向对象高效编程(第2版)》——3.16 从函数中返回引用

3.16 从函数中返回引用 C++面向对象高效编程(第2版)要尽可能避免从函数返回引用.原因如下: (1)能从函数安全返回对某对象的引用(假定为foo)时,该函数不能创建对象foo.否则,谁对新创建对象的存储区负责?因为它不能是局部对象,这意味着在调用foo()之前, 左值(L-value)语义的含义 左值可用在赋值操作符的左则(LHS).例如,a = b表示a将被修改,而且它是一个左值.许多C++(和C)的操作符都要求正确地操作左值.所有其他操作符与赋值号结合的操作符,例如,+=./=等都是左

C++语言基础 例程 虚函数

贺老师的教学链接  本课讲解 指向基类的指针,为何只能访问来自基类成员?! #include <iostream> #include <string> using namespace std; //声明基类Student class Student { public: Student(int, string,float);//声明构造函数 void display( ); //声明输出函数 protected: //受保护成员,派生类可以访问 int num; string nam

C++语言基础 例程 内置函数

贺老师的教学链接 例:函数指定为内置函数 #include <iostream> using namespace std; inline int max(int,int,int); int main( ) { int i=10,j=20,k=30,m; m=max(i,j,k); cout<<"max="<<m<<endl; return 0; } inline int max(int a,int b,int c) { if(b>a

C++语言基础 例程 有默认参数的函数

贺老师的教学链接 形参/实参.声明/调用/定义 #include <iostream> using namespace std; int max(int a, int b, int c=0);//仅声明时设默认 int main( ) { int a,b,c; cin>>a>>b>>c; cout<<"max(a,b,c)="<<max(a,b,c)<<endl; cout<<"m