質問編集履歴
1
誤字
title
CHANGED
File without changes
|
body
CHANGED
@@ -11,11 +11,11 @@
|
|
11
11
|
```c++
|
12
12
|
class A{
|
13
13
|
public:
|
14
|
-
int
|
14
|
+
int incrementFunc(int a){
|
15
15
|
return a+1;
|
16
16
|
}
|
17
17
|
void func(){
|
18
|
-
pointerReceiver(&A::
|
18
|
+
pointerReceiver(&A::incrementFunc,this,3);
|
19
19
|
}
|
20
20
|
};
|
21
21
|
|