因為工作升遷需求 需要考證照
在準備的時候遇到兩個很怪的問題 而且compile也不過
想請問怎麼解釋下面的code?
(工作上要是有人這樣寫我會想砍人 但這是考試...you know...)
1.
int main() {
int a = 3;
cout<<s(a)<<endl;
return 0;
}
int s(int n)
{
if(n == 0) return 1;
return s(n?1)*n;
}
這邊要怎麼解釋 s(n?1)
2. complex class本身有real part (re)跟imaginary part (im)
但這邊的 this?>re + t.re是啥意思 沒看過?>這東西
complex complex::operator+ (complex &t){
complex temp;
temp.re = this?>re + t.re;
temp.im = this?>im + t.im;
return temp;
}
謝謝