To create an occurance of. Used in object oriented programming to describe the creation of an object in code. example in c++:

class bird {
private:
   int wings, feet, beak;
public:
   void fly();
};

void main() {
   bird chicken;    //here's the instantiation of a bird object
}
Y'know, if you log in, you can write something here, or contact authors directly on the site. Create a New User if you don't already have an account.