`
yaojingguo
  • 浏览: 208184 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

C++ References

阅读更多

Section 5.5 of The C++ Programming Language (Special 3rd Edition) has a precise explanation about references. I use the following code to help me understand it.

 

 

#include <iostream>
#include <vector>
using namespace std;

void a() {
  cout << "a-----------------" << endl;
  int i = 1;
  int& r = i;
  int x = r;

  r = 2;
  cout << "i: " << i << endl;
  cout << "x: " << x << endl;
}

void b() {
  cout << "b--------------------" << endl;
  int ii = 0;
  int& rr = ii;
  rr++;
  int* pp = &rr;

  cout << "ii: " << ii << endl;
}

void c()  {
  // can't be compiled
  //double& dr = 1;

  const double& cdr = 1;
}

void increment(int& aa) {
  aa++;
}

void d() {
  cout << "d------------------" << endl;
  int i = 1;
  increment(i);
  cout << "i: " << i << endl;
}

int my_next(int p) {
  return p + 1;
}

void incr(int* p) {
  (*p)++;
}

void e() {
  cout << "e-----------------" << endl;
  int x = 1;
  increment(x);
  x = my_next(x);
  incr(&x);
  cout << "x: " << x << endl;
}

struct Pair {
  string name;
  double val;
};

vector<Pair> pairs;

double& value(const string& s) {
  for (int i = 0; i < pairs.size(); i++)
    if (s == pairs[i].name)
      return pairs[i].val;

  Pair p = {s, 0};
  pairs.push_back(p);

  return pairs[pairs.size() - 1].val;
}

void f() {
  string buf[] = {"aa", "bb", "bb", "aa", "aa", "bb", "aa", "aa"};

  for (int i = 0; i < 8; i++)
    value(buf[i])++;

  for (vector<Pair>::const_iterator p = p = pairs.begin(); p != pairs.end(); ++p)
    cout << p->name << ": " << p->val << endl;
}

int global = 10;

int& back() {
  return global;
}

void g() {
  cout << "g-------------------" << endl;
  int value = back();
  value++;
  cout << "value: " << value << ", global: " << global << endl;

  int& ref = back();
  ref++;
  cout << "ref: " << value << ", global: " << global << endl;
}

int main(int argc, const char *argv[]) {
  a(); 
  b();
  c();
  d();
  e();
  f();
  g();
  return 0;
}
0
0
分享到:
评论

相关推荐

    C++ references

    **C++ References 知识详解** C++ 是一种强大的、面向对象的编程语言,它以其高效、灵活性和广泛的库支持而受到程序员的喜爱。在学习C++时,掌握参考资料至关重要,尤其是对于初学者而言。"C++ references" 提供了...

    c++references.rar

    C++是一种广泛应用于系统软件、应用软件、游戏开发、设备驱动等领域的编程语言,由Bjarne Stroustrup于1979年在C语言的基础上发展而来,它引入了类、模板、命名空间等概念,使得程序设计更加面向对象。本资源包...

    我的c++习题

    ### C++引用(Introduction to C++ References) 引用是C++中另一种用于表示对象别名的方式。它可以被视为一个常量指针,但使用起来更像一个别名。例如,在题目中未明确提及,但引用可以用来简化函数参数的传递。 ...

    代码分析工具Scientific.Toolworks.Understand.5.0.936(x86,x64系统均可用)内含Keygen-2018最新版

    代码分析工具Scientific.Toolworks.Understand.5.0.936(x86,x64... INFOBROWSER Exclude 'call ptr' references from C/C++ References field. Added 'pointer' text to 'call ptr' references in the Calls field.

    C++ Library References

    《C++ Library References》是一本全面且深入的C++类库参考资料,旨在为开发者提供关于C++标准库的详尽解析。这本书涵盖了从基础到高级的C++库函数,包括了容器、迭代器、算法、字符串、数值计算、输入/输出流、异常...

    Effective.Modern.C++.zip

    and universal references Techniques for writing clear, correct, effective lambda expressions How std::atomic differs from volatile, how each should be used, and how they relate to C++'s concurrency ...

    C++98/C++03/C++11/C++14/C++17/C++20 标准帮助文档 2020-09-04

    1. **右值引用(Rvalue References)**:增强了类型系统,支持完美转发,使得移动语义成为可能,从而提高了性能和资源管理。 2. **自动类型推导(Auto)**:通过`auto`关键字,编译器可以自动推断变量的类型,简化...

    C++标准库(第二版) 学习C++11的好书

    2. **右值引用(Rvalue References)**:右值引用允许开发者处理临时对象和移动语义,提高了效率,特别是在对象复制和构造时。例如,`std::move`函数就是利用右值引用实现资源的高效转移。 3. **Lambda表达式...

    C++ Templates The Complete Guide, 2nd Edition

    including variadic templates, generic lambdas, class template argument deduction, compile-time if, forwarding references, and user-defined literals. They also deeply delve into fundamental language ...

    C++程序设计语言

    2. **右值引用(Rvalue References)**:右值引用是C++11中新增的引用类型,用于实现移动语义,提高了资源的利用效率,尤其是在对象拷贝和赋值操作中。 3. **Lambda表达式**:Lambda表达式提供了一种内联定义匿名...

    C++/CLI教程

    7. 指针和引用(Pointers and References):在C++/CLI中,指针和引用的使用与传统C++有所不同。例如,托管代码中使用指针时需要考虑垃圾回收的影响,而引用则是一个保留字,用于访问托管对象。 8. 包含规则(Rules...

    ISO C++11和C++14 标准

    1. **右值引用(Rvalue References)**:通过右值引用,C++11实现了移动语义(Move Semantics),允许更高效地处理临时对象和资源管理,减少不必要的拷贝操作。 2. **自动类型推导(Auto)**:auto关键字简化了变量...

    C++17 标准 ISOIEC 14882 2017 官方pdf文档

    In addition to the facilities provided by C, C++ provides additional data types, classes, templates, exceptions, namespaces, operator overloading, function name overloading, references, free store ...

    Thinking in C++.pdf

    - 引用(References):讨论了引用与指针的区别及其在实际编程中的作用。 - 运算符重载(Operator Overloading):介绍了如何自定义运算符以实现更强大的功能。 - 继承与动态对象(Inheritance and Dynamic ...

    电子书 深入理解C++11(PDF)

    2. **右值引用(Rvalue References)**:右值引用用于处理临时对象和移动语义,提高了效率。`std::move`函数可以将左值转换为右值引用,允许资源的有效转移,是实现`RAII(Resource Acquisition Is Initialization)`...

    The C++ Standard Library 2nd 原版pdf by Josuttis

    It’s the result of many minor changes, such as using rvalue references and move semantics, range-based for loops, auto, and new template features. Thus, besides presenting new libraries and ...

    C++11最新使用手册

    - **1.2 Normative references 规范性引用**:列出了实现 C++11 必须遵循的标准和技术规范。 - **1.3 Terms and definitions 术语与定义**:对 C++11 中的关键术语进行了明确的定义。 - **1.4 Implementation ...

    【李宁】征服C++11(史上最权威C++视频教程).zip

    - 右值引用(Rvalue References)和移动语义(Move Semantics):用于更有效地管理资源,减少不必要的拷贝操作。 - Lambda表达式:简化函数对象的创建,方便在函数式编程中使用。 - 类型推断(Type Inference,如...

    C++11(C++新标准)-中文版

    **右值引用**(Right-value references)是 C++11 中引入的一个关键概念,它允许更高效地处理临时对象。**移动语义**(Move semantics)是一种优化技术,利用右值引用可以更高效地从临时对象转移资源,而非复制它们。...

Global site tag (gtag.js) - Google Analytics