由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - [合集] address of array
相关主题
c++ 中如何把str转换为float?请问这是什么错误呀
请教改numpy array的dtype这段 C++ 怎么改才能编译?
size不固定的struct怎么定义呀?C++ 的 问题
C++求助: New/Delete in Multidimensioned arrayC++ linking 弱问 (one file)
有关objec access path的问题请问如何把初始化一个const 的vector (or array) in a class?
问几个问题谁给解释一下这个c question
为什么在overloading中,friend <<不能读取private值呢?C++ Function Pointer Array 的问题
C++ questionSegmentation fault 11 C++
相关话题的讨论汇总
话题: xyz话题: array话题: float话题: address话题: get
进入Programming版参与讨论
1 (共1页)
b***y
发帖数: 2799
1
☆─────────────────────────────────────☆
ruisher (aa) 于 (Fri Sep 2 21:58:32 2005) 提到:
Suppose I have a class which has an array as a private member, if I want to
get the address of the array,
class A{
public: ...
.....
//if I want to get the address of the array
float & get_xyz { return xyz[0];}
or
float * get_xyz { return xyz;}
what's the difference between this two?For the first one, why can't I use
const sth like "float & get_xyz const{ return xyz[0];}
.......
private:
float xyz[
1 (共1页)
进入Programming版参与讨论
相关主题
Segmentation fault 11 C++有关objec access path的问题
c++ 语法问几个问题
问一个 char * 和 char [] 的问题为什么在overloading中,friend <<不能读取private值呢?
which func will be called?C++ question
c++ 中如何把str转换为float?请问这是什么错误呀
请教改numpy array的dtype这段 C++ 怎么改才能编译?
size不固定的struct怎么定义呀?C++ 的 问题
C++求助: New/Delete in Multidimensioned arrayC++ linking 弱问 (one file)
相关话题的讨论汇总
话题: xyz话题: array话题: float话题: address话题: get