由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
JobHunting版 - 再问个C++题目
相关主题
C++ Question请教一个C++问题
还是基础题Can we define pure virtual function?
问个C++的题目A problem about Heap and Stack.
问个面试时候hash table的C++实现问题再帖一遍Amazon Onsite的题
也来一道c++的题Amazon的一些电面问题
C++ 一小题现在如果入行做iPhone Application前景怎么样?
c++ class default functions?在圣诞节专研C++,是怎么样一种情怀
C++ Q54: enum (C12)大家帮我看看这个工作的JD
相关话题的讨论汇总
话题: object话题: int话题: operator话题: conversion话题: implicit
进入JobHunting版参与讨论
1 (共1页)
M*******8
发帖数: 85
1
class A {

public:
A();
A(int x);
operator int& ();
};
A object =7;
what happens to "object" ?
a********1
发帖数: 750
2
A(int x) called

【在 M*******8 的大作中提到】
: class A {
:
: public:
: A();
: A(int x);
: operator int& ();
: };
: A object =7;
: what happens to "object" ?

s*****r
发帖数: 773
3
啥意思?

【在 M*******8 的大作中提到】
: class A {
:
: public:
: A();
: A(int x);
: operator int& ();
: };
: A object =7;
: what happens to "object" ?

s*****r
发帖数: 773
4
A(int x) will be called. There is an implicit conversion from 7 to the
object.

【在 M*******8 的大作中提到】
: class A {
:
: public:
: A();
: A(int x);
: operator int& ();
: };
: A object =7;
: what happens to "object" ?

M*******8
发帖数: 85
5
thanks
what does operator int& () mean pls?

【在 s*****r 的大作中提到】
: A(int x) will be called. There is an implicit conversion from 7 to the
: object.

s*****r
发帖数: 773
6
it means an implicit conversion from the object to the int.
google 'conversion operator'

【在 M*******8 的大作中提到】
: thanks
: what does operator int& () mean pls?

1 (共1页)
进入JobHunting版参与讨论
相关主题
大家帮我看看这个工作的JD也来一道c++的题
C++ object size一问C++ 一小题
这句话怎么理解?c++ class default functions?
bloomberg 面经C++ Q54: enum (C12)
C++ Question请教一个C++问题
还是基础题Can we define pure virtual function?
问个C++的题目A problem about Heap and Stack.
问个面试时候hash table的C++实现问题再帖一遍Amazon Onsite的题
相关话题的讨论汇总
话题: object话题: int话题: operator话题: conversion话题: implicit