Encyclopedia > Slicing

  Article Content

Slicing

In computer science, slicing is an operation to slice off a target value by size of the base type, thus extra parts will be gone.

For example, in C++

class A
{
  int age;
  String name;
};

class B : public A
{
  bool is_male;
};

B b;
A a;
a = b; // slicing occurs.

See also: Object-oriented programming



All Wikipedia text is available under the terms of the GNU Free Documentation License

 
  Search Encyclopedia

Search over one million articles, find something about almost anything!
 
 
  
  Featured Article
Urethra

... and the vaginal opening. In the human male, the urethra is about 8 inches (200 mm) long and opens at the end of the penis. Medical problems of ...

 
 
 
This page was created in 78.3 ms