- line 33 does nothing; your member variable is hidden by the parameter. Either rename your member variable to m_studentID, or do this->studentID = studentID instead.
- What's the point of student::setALL?
- line 44 shouldn't compile... it doesn't even make sense. What were you trying to do there anyway? Just get rid of it; a function called 'DisplayStudent' should do nothing else except print the student data, and thus should be marked const.
- Notably, you never actually call your student::DisplayStudent function anyway, so it's not going to print anything regardless.