Skip to Main Content
Software Essentials
book

Software Essentials

by Adair Dingle
July 2014
Intermediate to advanced content levelIntermediate to advanced
436 pages
12h 27m
English
Chapman and Hall/CRC
Content preview from Software Essentials
258 Software Essentials
class Slider: public Iconoclast
{ bool vertical; // need for slider
int distance; // need for slider
public:
Slider();
virtual void move() { }
};
class SpinSlider: public Iconoclast
{ Slider firstMovement;
Spinner secondMovement;
public:
SpinSlider();
// use subobjects for movement
virtual void move() { }
};
Example 8.22: C# Abstract Class and Descendants: Data Missing
abstract class Iconoclast
{ public virtual void move();
}
class Spinner: Iconoclast
{ private bool clockwise; // need for spinner
private bool expand; // need for spinner
public Spinner();
public override void move() { }
}
class Slider: Iconoclast
{ private bool vertical; // need for slider
private
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

Software Architect’s Handbook

Software Architect’s Handbook

Joseph Ingeno
Economics-Driven Software Architecture

Economics-Driven Software Architecture

Ivan Mistrik, Rami Bahsoon, Rick Kazman, Yuanyuan Zhang
Software Architect Bootcamp

Software Architect Bootcamp

Raphael Malveau, Ph.D. Thomas J. Mowbray

Publisher Resources

ISBN: 9781439841204