C++ 引用

C 語言常用小點
C字符串
C 基礎-指針魏宽,函數(shù)處理器
C 文件操作
JNI 基礎 C語言版

C++ 基礎知識點大綱

[C++ 基礎經(jīng)驗知識點]
C++ 基礎代碼模板和使用
C++ 基礎-定點模式
C++ 宏定義
C++ 指針區(qū)分
C++ 指針特別篇-指針轉換和智能指針
C++ 類的繼承和多繼承
C++ this 原理
C++淺拷貝和深拷貝的原理
C++ 函數(shù)
C++ 仿函數(shù)
C++ 友元函數(shù)理解
C++ STL
C++ 模板函數(shù)純虛函數(shù)和Java對比
C++ 函數(shù)運算符重載(二)化簡版
C++ 多線程
C++ 算法包和源碼簡析
C++ 引用

引用變量奔穿,作為別名嗡贺,共享存儲

引用就想夫妻倆,共用一個內存 ,形參影響實參。

引用基本使用

#include <iostream>
#include <string>
using namespace std;
int main()
{
    int rats = 101;
    int &rodents = rats;

    cout << "rats=" << rats << endl;
    cout << "rodens=" << rodents << endl;
    rodents++;

    cout << "rats=" << rats << endl;
    cout << "rodens=" << rodents << endl;
    cout << "&rats=" << &rats << endl;
    cout << "&rodens=" << &rodents << endl;   

    int bunnies = 50;
    rodents = bunnies;
    cout << "bunnies = " << bunnies;
    cout << ",rats = " << rats;
    cout << ",rodents = " << rodents << endl;
    cout << "bunnies addr = " << &bunnies;
    cout << ",rats addr = " << &rats;
    cout << ",rodents addr = " << &rodents << endl;
    return 0;
}

引用傳慘,是否可以修改,const可以限制參數(shù)修改

#include <iostream>
#include <string>
using namespace std;
void swapr(int & a, int & b);
void swapr2(int * a, int * b);
void swapr3(int a, int  b);
int main()
{
    int wallet1 = 100;
    int wallet2 = 350;
    cout << "wallet1 = "<< wallet1 << " wallet2 = " << wallet2 << endl;
    cout << "using references to swap contents:\n";
    swapr(wallet1,wallet2);
    cout << "wallet1 = "<< wallet1 << " wallet2 = " << wallet2 << endl;

    cout << "using pointers to swap contents:\n";
    swapr2(&wallet1,&wallet2);
    cout << "wallet1 = "<< wallet1 << " wallet2 = " << wallet2 << endl;
    cout << "using value to swap contents:\n";
    swapr3(wallet1,wallet2);
    cout << "wallet1 = "<< wallet1 << " wallet2 = " << wallet2 << endl;

    cout << &"abc" << endl;

    return 0;
}

void swapr(int & a, int & b)
{
    int temp = a;
    a = b;
    b = temp;
}
void swapr2(int * a, int * b)
{
    int temp = *a;
    *a = *b;
    *b = temp;
}

void swapr3(int a, int  b)
{
    int temp = a;
    a = b;
    b = temp;
}

結構體的引用

#include <iostream>
#include <string>
struct free_throws
{
    std::string name;
    int made;
    int attempts;
    float percent;
};

void display(const free_throws & ft);
void set_pc(free_throws & ft);
free_throws & accumulate(free_throws &target, const free_throws &source);

int main()
{
    free_throws one = {"Ifelsa Branch", 13, 14};
    free_throws two = {"Andor Knott", 10, 16};
    free_throws three = {"Minnie Max", 7, 9};
    free_throws four = {"Whily Looper", 5, 9};
    free_throws five = {"Long Long", 6, 14};
    free_throws team = {"Throwgoods", 0, 0};
    free_throws dup;
    set_pc(one);
    display(one);
    accumulate(team, one);
    display(team);
// use return value as argument
    display(accumulate(team, two));
    accumulate(accumulate(team, three), four);
    display(team);
// use return value in assignment
    dup = accumulate(team,five);
    std::cout << "Displaying team:\n";
    display(team);
    std::cout << "Displaying dup after assignment:\n";
    display(dup);
    set_pc(four);
// ill-advised assignment
    accumulate(dup,five) = four;
    std::cout << "Displaying dup after ill-advised assignment:\n";
    display(dup);
    // std::cin.get();
    return 0;
}

void display(const free_throws & ft)
{
    using std::cout;
    cout << "Name: " << ft.name << '\n';
    cout << "  Made: " << ft.made << '\t';
    cout << "Attempts: " << ft.attempts << '\t';
    cout << "Percent: " << ft.percent << '\n';
}
void set_pc(free_throws & ft)
{
    if (ft.attempts != 0)
        ft.percent = 100.0f *float(ft.made)/float(ft.attempts);
    else
        ft.percent = 0;
}

free_throws & accumulate(free_throws & target, const free_throws & source)
{
    target.attempts += source.attempts;
    target.made += source.made;
    set_pc(target);
    return target;
}

引用和類壹粟,如果是char * 類型字符串和 string 參數(shù)不匹配,我們需要在前面加上const

最后一個函數(shù)的引用不存在,所以打印不到內容趁仙。

include <iostream>
#include <string>
using namespace std;
string version1(const string &s1, const string &s2);
const string &version2(string &s1, const string &s2);
const string &version3(string &s1, const string &s2);
int main()
{
    string input;
    string copy;
    string result;
    cout << "Enter a string: ";
    getline(cin, input);
    cout << "Your string as entered: " << input << endl;

    result = version1(input, "***");

    cout << "Your change string: " << result << endl;
    cout << "Your original string: " << input << endl;
    cout << "-----------------------" << endl;
    result = version2(input, "***");
    cout << "Your change string: " << result << endl;
    cout << "Your original string: " << input << endl;
    cout << "-----------------------" << endl;
    cout << "Reset original stirng: \n";
    input = copy;
    result = version3(input,"@@@");
    cout << "Your change string: " << result << endl;
    cout << "Your original string: " << input << endl;
    return 0;
}

string version1(const string &s1, const string &s2)
{
    // return s2 + s1 + s2;
    string temp;
    temp = s2 + s1 + s2;
    return temp;
}

// const string &s2 類型不匹配洪添,必須加入const,前面右值“***”付給左值s2
// 返回值 const string & 
const string &version2(string &s1, const string &s2)
{
    s1 = s2 + s1 + s2;
    return s1;
}


// 這個是錯誤的temp被釋放雀费,引用已經(jīng)不存在
const string &version3(string &s1, const string &s2)
{
    string temp;
    temp = s2 + s1 + s2;
    return temp;
}

ostream 引用等

#include <iostream>
#include <string>
#include <fstream>
using namespace std;
const int LIMIT = 5;
void file_it(ostream &os, double fo, double *fe, int n);
int main()
{
    ofstream fout;
    const char *fn = "ep-data.txt";
    fout.open(fn);
    if (!fout.is_open())
    {
        cout << "can not open " << fn << "Bye ." << endl;
        exit(EXIT_FAILURE);
    }
    double objective;
    cout << "Enter the focal length of your tlescope objective in mm: ";
    cin >> objective;
    double eps[LIMIT];
    cout << "Enter the focal length of eyeleces in mm:\n";
    for (int i = 0; i < LIMIT; i++)
    {
        cout << "Eyepiece # " << i + 1 << ": ";
        cin >> eps[i];
    }
    file_it(cout, objective, eps, LIMIT);
    file_it(fout, objective, eps, LIMIT);

    return 0;
}

void file_it(ostream &os, double fo, double *fe, int n)
{
    os << "Focal length of objective: " << fo << " mm\n";
    os << "f.l. eyepiece\t"
       << "magnification" << endl;
    for (int i = 0; i < n; i++)
    {
        os << fe[i];
        os << int(fo / fe[i] + 0.5) << endl;
    }
}
最后編輯于
?著作權歸作者所有,轉載或內容合作請聯(lián)系作者
禁止轉載干奢,如需轉載請通過簡信或評論聯(lián)系作者。
  • 序言:七十年代末盏袄,一起剝皮案震驚了整個濱河市忿峻,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌辕羽,老刑警劉巖逛尚,帶你破解...
    沈念sama閱讀 206,013評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異刁愿,居然都是意外死亡绰寞,警方通過查閱死者的電腦和手機,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,205評論 2 382
  • 文/潘曉璐 我一進店門铣口,熙熙樓的掌柜王于貴愁眉苦臉地迎上來滤钱,“玉大人,你說我怎么就攤上這事脑题〖祝” “怎么了?”我有些...
    開封第一講書人閱讀 152,370評論 0 342
  • 文/不壞的土叔 我叫張陵叔遂,是天一觀的道長停团。 經(jīng)常有香客問我,道長掏熬,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 55,168評論 1 278
  • 正文 為了忘掉前任秒梅,我火速辦了婚禮旗芬,結果婚禮上,老公的妹妹穿的比我還像新娘捆蜀。我一直安慰自己疮丛,他們只是感情好,可當我...
    茶點故事閱讀 64,153評論 5 371
  • 文/花漫 我一把揭開白布辆它。 她就那樣靜靜地躺著誊薄,像睡著了一般。 火紅的嫁衣襯著肌膚如雪锰茉。 梳的紋絲不亂的頭發(fā)上呢蔫,一...
    開封第一講書人閱讀 48,954評論 1 283
  • 那天,我揣著相機與錄音飒筑,去河邊找鬼片吊。 笑死绽昏,一個胖子當著我的面吹牛,可吹牛的內容都是我干的俏脊。 我是一名探鬼主播全谤,決...
    沈念sama閱讀 38,271評論 3 399
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼爷贫!你這毒婦竟也來了认然?” 一聲冷哼從身側響起,我...
    開封第一講書人閱讀 36,916評論 0 259
  • 序言:老撾萬榮一對情侶失蹤漫萄,失蹤者是張志新(化名)和其女友劉穎卷员,沒想到半個月后,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體卷胯,經(jīng)...
    沈念sama閱讀 43,382評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡子刮,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內容為張勛視角 年9月15日...
    茶點故事閱讀 35,877評論 2 323
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了窑睁。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片挺峡。...
    茶點故事閱讀 37,989評論 1 333
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖担钮,靈堂內的尸體忽然破棺而出橱赠,到底是詐尸還是另有隱情,我是刑警寧澤箫津,帶...
    沈念sama閱讀 33,624評論 4 322
  • 正文 年R本政府宣布狭姨,位于F島的核電站,受9級特大地震影響苏遥,放射性物質發(fā)生泄漏饼拍。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點故事閱讀 39,209評論 3 307
  • 文/蒙蒙 一田炭、第九天 我趴在偏房一處隱蔽的房頂上張望师抄。 院中可真熱鬧,春花似錦教硫、人聲如沸叨吮。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,199評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽茶鉴。三九已至,卻和暖如春景用,著一層夾襖步出監(jiān)牢的瞬間涵叮,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,418評論 1 260
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留围肥,地道東北人剿干。 一個月前我還...
    沈念sama閱讀 45,401評論 2 352
  • 正文 我出身青樓,卻偏偏與公主長得像穆刻,于是被迫代替她去往敵國和親置尔。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當晚...
    茶點故事閱讀 42,700評論 2 345

推薦閱讀更多精彩內容

  • 在 C++ 中,引用類型是一種復合類型朵锣,可以分為左值引用谬盐、常引用和右值引用 在了解什么是左值引用和右值引用之前,我...
    進擊的Lancelot閱讀 3,854評論 0 0
  • 引用的基本語法作用:給變量起別名語法:數(shù)據(jù)類型 &別名 = 原名 引用的注意事項引用必須初始化引用在初始化后诚些,不可...
    奶油泡芙的收藏家閱讀 116評論 0 0
  • 本文是筆者在C++學習過程中飞傀,對引用語法的總結記錄,如有不隊的地方诬烹,歡迎大家指正砸烦! 一、 什么是引用 ??引用(r...
    GC_W閱讀 408評論 0 2
  • 概念 c++中绞吁,變量的引用就是變量的別名幢痘,因此引用(reference)又成為別名(alias)。 變量的引用 i...
    殺破魂閱讀 570評論 0 0
  • 什么是引用 引用其實就是變量的別名家破,在C++中颜说,它主要用作函數(shù)形參,于是函數(shù)可以修改傳入?yún)?shù)的原始數(shù)據(jù)汰聋,而不在是數(shù)...
    不惜留戀_閱讀 133評論 0 0