Re: [Tutor] Constructing a object

2012-09-11 Thread eryksun
On Tue, Sep 11, 2012 at 10:23 PM, Ashley Fowler wrote: > How do you construct a object using variables? > > For instance I have to construct a student object, by first prompting the > user to enter variables for the Student class (their first and last names, > credits and gpa) then construct a Stu

Re: [Tutor] Constructing a object

2012-09-11 Thread Dwight Hutto
On Tue, Sep 11, 2012 at 10:23 PM, Ashley Fowler wrote: > How do you construct a object using variables? > > For instance I have to construct a student object, by first prompting > the user to enter variables for the Student class (their first and last > names, credits and gpa) then construct a

[Tutor] Constructing a object

2012-09-11 Thread Ashley Fowler
How do you construct a object using variables? For instance I have to construct a student object, by first prompting the user to enter variables for the Student class (their first and last names, credits and gpa) then construct a Student object using those variables.