중간 이론 문제 총화
태그: c + +
If we define
double a = 3.14;
,which is NOT correct? (B) A.double &b = a;
B.int &b = a;
C.const int &b = a;
D.const double &b = a;
Which function will be called? (C)
void f(int i) {}
void f(const int i) {}
int main() {
const int a = 0;
f(a);
}
A.void f(int i)
B.void f(const int i)
C.compile error
D.runtime error
두 함수 가 모두 값 에 따라 전달 되 는 매개 변수 이기 때문에 main 함수 중의 변수 에 영향 을 주지 않 습 니 다. 컴 파일 러 는 같은 함수 라 고 생각 하여 중복 정 의 를 초래 할 수 있 습 니 다.
Which function will be called? (B)
void f(int* i) {}
void f(const int* i) {}
int main() {
const int a = 0;
const int* p = &a;
f(p);
}
A.void f(int* i)
B.void f(const int* i)
C.compile error
D.runtime error
이 문 제 는 포인터 전 삼 을 사용 하기 때문에 main 함수 의 변수 에 영향 을 줄 수 있 습 니 다.
Which of the following does the C++ compiler NOT examine, in order to select the proper overloaded? (D)
A. types of the arguments in the function call
B. order of the arguments in the function call
C. the number of arguments in the function call
D. the return type of the function
What does the code
A a();
do ? (B) class A {
int i;
};
A. create a object named "a"
B. declare a function named "a"
C. compile error
D. runtime error
Which is correct? (A)
A. const object can only call const member function
B. non-const object can only call non-const member function
C. static member function can also be const
What‘s the value of a and b after constructor?
class A {
public:
A() : b(1), a(b+1) {}
private:
int a;
int b;
};
A. 2 1
B. 1 2
C. undefined-value 1
D. undefined-value undefined-value
대상 생 성 과정 에서 정 의 된 순서 와 관련 이 있 으 며 매개 변수 목록 의 순서 와 무관 합 니 다.
Which statement will cause a “compile error”? (3)
class A {
public:
A() : a(1) {}
private:
const int a;
};
int main() {
A a, b; // (1)
A c(a); // (2)
a = b; // (3)
return 0;
}
The copy constructor is executed on : (1) Assigned one object to another object at its creation (2) When objects are sent to function using call by value mechanism (3) When the function return an object
Which function will be called ? (D)
class A {
public:
void f() {}
void f(int i) {}
};
class B : public A {
public:
void f(A a) {}
};
int main() {
B b;
b.f(3);
return 0;
}
A. void f()
B. void f(int i)
C. void f(A a)
D. compile error
PS: Name hiding
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.