reference
Posted 愉快的一天
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了reference相关的知识,希望对你有一定的参考价值。
[email protected]:~$ g++ -std=c++11 ref.cpp
ref.cpp:7:10: error: invalid conversion from ‘int’ to ‘int*’ [-fpermissive]
int *a = i;
^
[email protected]:~$ g++ -std=c++11 ref.cpp
int i = 123;
//同类型才可以赋值 int *a = &i; int main() { cout << i << endl; return 0; }
以上是关于reference的主要内容,如果未能解决你的问题,请参考以下文章
markdown 链接,片段,提醒,收集点作为重新访问WordPress插件开发期间的笔记#WordPress #Plugin #PHP #Refere