| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 1340 人关注过本帖
标题:区地址符&的问题。
取消只看楼主 加入收藏
wjxiz
Rank: 1
等 级:新手上路
帖 子:2
专家分:0
注 册:2014-9-16
结帖率:0
收藏
已结贴  问题点数:20 回复次数:1 
区地址符&的问题。
前天百度笔试, 有一个函数 g(int &a) return ++a;

当时发现自己不理解&符号,然后自己现在想写一个 带有& 符号 作为函数参数的 函数,发现 编译过不了。 请问 类似于 int &a 这样的参数 应该怎么写,举一个简单的例子。
搜索更多相关主题的帖子: 百度 return 
2016-04-23 18:02
wjxiz
Rank: 1
等 级:新手上路
帖 子:2
专家分:0
注 册:2014-9-16
收藏
得分:0 
void adre2(int &a,int &b){
    int t;
    t= a;
    a= b;
    b= t;
}


错误提示为:
parameter.c:27:16: error: expected ')'
void adre2(int &a,int&b){
               ^
parameter.c:27:11: note: to match this '('
void adre2(int &a,int&b){
          ^
parameter.c:27:16: error: parameter name omitted
void adre2(int &a,int&b){
               ^
parameter.c:29:5: error: use of undeclared identifier 'a'
        t= a;
           ^
parameter.c:30:2: error: use of undeclared identifier 'a'
        a= b;
        ^
parameter.c:30:5: error: use of undeclared identifier 'b'
        a= b;
           ^
parameter.c:31:2: error: use of undeclared identifier 'b'
        b= t;
        ^
2016-04-23 18:17
快速回复:区地址符&的问题。
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.016194 second(s), 9 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved