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
East Hampton North, New York

... size is 3.07. In the town the population is spread out with 22.3% under the age of 18, 6.7% from 18 to 24, 28.0% from 25 to 44, 25.8% from 45 to 64, and 17.2% who are ...

 
 
 
This page was created in 22.7 ms