cpp(引用的本质)
Posted kenantongxue
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了cpp(引用的本质)相关的知识,希望对你有一定的参考价值。
/* 引用作为变量的别名,在一些场合可以代替指针 */ #include <iostream> using namespace std; void swap(int& a, int& b) { int t = a; a = b; b = t; } int main() { int a = 1; int b = 2; swap(a, b); cout << "a = " << a << endl << "b = " << b << endl; }
以上是关于cpp(引用的本质)的主要内容,如果未能解决你的问题,请参考以下文章
Android 逆向整体加固脱壳 ( DEX 优化流程分析 | DexPrepare.cpp 中 dvmOptimizeDexFile() 方法分析 | /bin/dexopt 源码分析 )(代码片段