MCQOPTIONS
Saved Bookmarks
| 1. |
Which is the correct syntax for declaring the type of this in a member function? |
| A. | classType [cv-qualifier-list] *const this; |
| B. | classType const[cv-qualifier-list] *this; |
| C. | [cv-qualifier-list]*const classType this; |
| D. | [cv-qualifier-list] classType *const this; |
| Answer» E. | |