Trending Object Pascal Discussions

Follow

Ask the Community


Ask any professional question and get answers from other specialists.

Stream language
محمد الفيفي's image
Question added by محمد الفيفي Software Testing (Ito Quality & System Service Testing ) Atheeb Intergraph Saudi Company
8 years ago
Answers:
4
Followers:
Views:
127
Vote Count:
0
Answer should contain a minimum of 25 characters.
Mohamed Shameer's image
Question added by Mohamed Shameer OpenText ECM Consultant & ECM Administrator Petrochemical Industrial Company
9 years ago
Answers:
2
Followers:
Views:
616
Vote Count:
0
Answer should contain a minimum of 25 characters.
Default profile image
Question added by Deleted user
10 years ago
Answers:
1
Followers:
Views:
107
Vote Count:
1
Answer should contain a minimum of 25 characters.
Bandar Alsaidi's image  
Answer added by  Bandar Alsaidi, senior business development specialist, Saudi Telecom Company - Stc
8 years ago

A class is a definition of an object, an object is a variable defined by a class. meaning : class is a type, objects is a variables of a class.

Default profile image  
Answer added by  Deleted user
8 years ago

simple answer without details,the Object is a copy of class, in one class there is a lot of objects

Noor Ahmed Syed's image  
Answer added by  Noor Ahmed Syed, IT Manager, Haji Abdullah Alireza & Co. Ltd.
9 years ago

‘DataTable’ has “DataRowCollection” object which has all rows in a “DataTable” object.'Add' method of the DataRowCollection is used to add a new row in DataTabl ... See More

Default profile image  
Answer added by  Deleted user
5 years ago

A class is a blueprint for building the object. Classes are extensible, unless explicitly defined as final. Objects, once built, is what it is, unchangeable.

yahia dekar's image  
Answer added by  yahia dekar, it engineer , university of sidi bel abbes
5 years ago

a difference is the class it tke abstract of object object it's instance of class

Garima Gupta's image  
Answer added by  Garima Gupta, Training, Training offered by Spoken Tutorial Project, IIT Bombay
9 years ago

Few Pascal compilers names are: Name: Vector Pascal    Author: Glasgow University Windows:  Yes             Unix-like: Yes Other OSs: No   Name: GNU Pascal      Author: G ... See More

Default profile image  
Answer added by  Deleted user
9 years ago

To add new row ,one can simply do this :   // get the DataTable     DataTabel dt = new DataTable();    DataRow dr = dt.NewRow();    dr[0] = "random_data";    . ... See More