课本程序,哪里有异常,请大牛帮忙看看

课本程序,哪里有错误,请大牛帮忙看看。
#include<iostream>
#include<string>
using namespace std;
class Student
{
public:
Student(int n, string nam,char s)
{
num=n;
name=nam;
sex=s;
cout << "Constructor called" << endl;
}
~Student()
{
cout << "Destructor called" << endl;
}

void display()
{
cout << "num:" << num << endl;
cout << "name:" << name << endl;
cout << "sex:" << sex << endl;
}
private:
int num;
string name;
char sex;
};

int main()
{
Student stud1(10010, "Wang_li", 'f');
stud1.display;
Student stud2(10011,"Zhang_fun",'m');
stud2.display;
return 0;
}


提示错误:
>d:\visual studio 2010\projects\1.9\1.9\1.cpp(34): error C3867: “Student::display”: 函数调用缺少参数列表;请使用“&Student::display”创建指向成员的指针
1>d:\visual studio 2010\projects\1.9\1.9\1.cpp(36): error C3867: “Student::display”: 函数调用缺少参数列表;请使用“&Student::display”创建指向成员的指针

------解决方案--------------------
stud1.display; --》stud1.display();
楼主需要认真看书了