Classes, Fields, Constructors, Methods, Properties.

Slides:



Advertisements
Similar presentations
The Line Class Suppose you are involved in the development of a large mathematical application, and this application needs an object to represent a Line.
Advertisements

Static Members, Structures, Enumerations, Generic Classes, Namespaces Learning & Development Team Telerik Software Academy.
Composition CMSC 202. Code Reuse Effective software development relies on reusing existing code. Code reuse must be more than just copying code and changing.
Module 8 “Polymorphism and Inheritance”. Outline Understanding Inheritance Inheritance Diagrams Constructors in Derived Classes Type Compatibility Polymorphism.
Section 5 – Classes. Object-Oriented Language Features Abstraction –Abstract or identify the objects involved in the problem Encapsulation –Packaging.
OOP Using Classes - I. Structures vs. Classes C-style structures –No “interface” If implementation changes, all programs using that struct must change.
Classes, Fields, Constructors, Methods, Properties Svetlin Nakov Telerik Corporation
Classes, Fields, Constructors, Methods, Properties Svetlin Nakov Telerik Academy academy.telerik.com.
CSM-Java Programming-I Spring,2005 Introduction to Objects and Classes Lesson - 1.
Other Types in OOP Enumerations, Structures, Generic Classes, Attributes Svetlin Nakov Technical Trainer Software University
Introduction to Object Oriented Programming. Object Oriented Programming Technique used to develop programs revolving around the real world entities In.
Programming in Java Unit 2. Class and variable declaration A class is best thought of as a template from which objects are created. You can create many.
Sun Certified Java Programmer, ©2004 Gary Lance, Chapter 5, page 1 Sun Certified Java 1.4 Programmer Chapter 5 Notes Gary Lance
C# D1 CSC 298 Elements of C# code (part 2). C# D2 Writing a class (or a struct)  Similarly to Java or C++  Fields: to hold the class data  Methods:
Defining Classes Classes, Fields, Constructors, Methods, Properties SoftUni Team Technical Trainers Software University
An Object-Oriented Approach to Programming Logic and Design Chapter 3 Using Methods and Parameters.
Topic 1 Object Oriented Programming. 1-2 Objectives To review the concepts and terminology of object-oriented programming To discuss some features of.
Chapter 6 Introduction to Defining Classes. Objectives: Design and implement a simple class from user requirements. Organize a program in terms of a view.
Defining Classes Classes, Fields, Constructors, Methods, Properties Svetlin Nakov Technical Trainer Software University
Programming Fundamentals1 Chapter 8 OBJECT MANIPULATION - INHERITANCE.
CSci 162 Lecture 10 Martin van Bommel. Procedures vs Objects Procedural Programming –Centered on the procedures or actions that take place in a program.
UMass Lowell Computer Science Java and Distributed Computing Prof. Karen Daniels Fall, 2000 Lecture 9 Java Fundamentals Objects/ClassesMethods Mon.
OOP Basic Topics Classes, Fields, Constructors, Methods, Properties SoftUni Team Technical Trainers Software University
Inheritance CSI 1101 Nour El Kadri. OOP  We have seen that object-oriented programming (OOP) helps organizing and maintaining large software systems.
Other Types in OOP Enumerations, Structures, Generic Classes, Attributes SoftUni Team Technical Trainers Software University
Application development with Java Lecture 21. Inheritance Subclasses Overriding Object class.
Introduction to Object-Oriented Programming Lesson 2.
Classes, Interfaces and Packages
Classes, Fields, Constructors, Methods, Properties Svetlin Nakov Telerik Academy academy.telerik.com.
Programming Fundamentals1 Chapter 7 INTRODUCTION TO CLASSES.
Object-Oriented Programming: Classes and Objects Chapter 1 1.
C# Fundamentals An Introduction. Before we begin How to get started writing C# – Quick tour of the dev. Environment – The current C# version is 5.0 –
UMass Lowell Computer Science Java and Distributed Computing Prof. Karen Daniels Fall, 2000 Lecture 10 Java Fundamentals Objects/ClassesMethods.
Classes CS 162 (Summer 2009). Parts of a Class Instance Fields Methods.
Computer Programming II Lecture 5. Introduction to Object Oriented Programming (OOP) - There are two common programming methods : procedural programming.
Object Oriented Programming. Constructors  Constructors are like special methods that are called implicitly as soon as an object is instantiated (i.e.
Classes, Fields, Constructors, Methods, Properties Telerik Software Academy Object-Oriented Programming.
Inheritance and Polymorphism
Inheritance Modern object-oriented (OO) programming languages provide 3 capabilities: encapsulation inheritance polymorphism which can improve the design,
Inheritance Chapter 7 Inheritance Basics Programming with Inheritance
C# for C++ Programmers 1.
Creating and Using Objects, Exceptions, Strings
Object-Oriented Programming Concepts
Classes (Part 1) Lecture 3
Object-Oriented Programming with C#
Inheritance ITI1121 Nour El Kadri.
Java OOP Overview Classes and Objects, Members and Class Definition, Access Modifier, Encapsulation Java OOP Overview SoftUni Team Technical Trainers.
Structures Revisited what is an aggregate construct? What aggregate constructs have we studied? what is a structure? what is the keyword to define a structure?
Static data members Constructors and Destructors
Object-Oriented Programming: Classes and Objects
Inheritance and Polymorphism
Methods Attributes Method Modifiers ‘static’
classes and objects review
What is Encapsulation, Benefits, Implementation in Java
Structs.
Object-Oriented Programming: Classes and Objects
Object Based Programming
Chapter 9 Inheritance and Polymorphism
Introduction to Classes
Inheritance Basics Programming with Inheritance
Using Classes and Objects
Java Programming Language
Lecture 22 Inheritance Richard Gesick.
Constructors and Other Tools
Computer Programming with JAVA
9: POLYMORPHISM Programming Technique II (SCSJ1023) Jumail Bin Taliba
Java Inheritance.
CIS 199 Final Review.
Chapter 11 Inheritance and Encapsulation and Polymorphism
Chengyu Sun California State University, Los Angeles
Presentation transcript:

Classes, Fields, Constructors, Methods, Properties

1. Defining Simple Classes 2. Fields 3. Access Modifiers 4. Using Classes and Objects 5. Constructors 6. Methods 7. Properties 8. Enumerations (Enums) 9. Keeping the Object State 2

 Classes model real-world objects and define  Attributes (state, properties, fields)  Behavior (methods, operations)  Classes describe the structure of objects  Objects describe particular instance of a class  Properties hold information about the modeled object relevant to the problem  Operations implement object behavior 4

 Classes in C# can have members:  Fields, constants, methods, properties, indexers, events, operators, constructors, destructors, …  Inner types (inner classes, structures, interfaces, delegates,...)  Members can have access modifiers (scope)  public, private, protected, internal  Members can be  static (common) or specific for a given object 5

public class Cat : Animal { private string name; private string name; private string owner; private string owner; public Cat(string name, string owner) public Cat(string name, string owner) { this.name = name; this.name = name; this.owner = owner; this.owner = owner; } public string Name public string Name { get { return this.name; } get { return this.name; } set { this.name = value; } set { this.name = value; } } Fields Constructor Property Begin of class definition Inherited (base) class 6

public string Owner public string Owner { get { return this.owner; } get { return this.owner; } set { this.owner = value; } set { this.owner = value; } } public void SayMiau() public void SayMiau() { Console.WriteLine("Miauuuuuuu!"); Console.WriteLine("Miauuuuuuu!"); }} Method End of class definition 7

 Class definition consists of:  Class declaration  Inherited class or implemented interfaces  Fields (static or not)  Constructors (static or not)  Properties (static or not)  Methods (static or not)  Events, inner types, etc. 8

Defining and Using Data Fields

 Fields are data members defined inside a class  Fields hold the internal object state  Can be static or per instance  Can be private / public / protected / … 10 class Dog { private string name; private string name; private string breed; private string breed; private int age; private int age; protected Color color; protected Color color;} Field declarations

 Constant fields are of two types:  Compile-time constants – const  Replaced by their value during the compilation  Runtime constants – readonly  Assigned once only at object creation 11 class Math { public const float PI = ; public const float PI = ; public readonly Color = public readonly Color = Color.FromRGBA(25, 33, 74, 128); Color.FromRGBA(25, 33, 74, 128);}

12 public class Constants { public const double PI = ; public const double PI = ; public readonly double Size; public readonly double Size; public Constants(int size) public Constants(int size) { this.Size = size; // Cannot be further modified! this.Size = size; // Cannot be further modified! } static void Main() static void Main() { Console.WriteLine(Constants.PI); Console.WriteLine(Constants.PI); Constants c = new Constants(5); Constants c = new Constants(5); Console.WriteLine(c.Size); Console.WriteLine(c.Size); c.Size = 10; // Compilation error: readonly field c.Size = 10; // Compilation error: readonly field Console.WriteLine(Constants.Size); // compile error Console.WriteLine(Constants.Size); // compile error }}

Public, Private, Protected, Internal

 Class members can have access modifiers  Used to restrict the classes able to access them  Supports the OOP principle "encapsulation"  Class members can be:  public – accessible from any class  protected – accessible from the class itself and all its descendent classes  private – accessible from the class itself only  internal (default) – accessible from the current assembly, i.e. the current VS project 14

 The keyword this inside a method points to the current instance of the class  Example: 15 class Dog { private string name; private string name; public void PrintName() public void PrintName() { Console.WriteLine(this.name); Console.WriteLine(this.name); // The same like Console.WriteLine(name); // The same like Console.WriteLine(name); }}

Example

 Our task is to define a simple class that represents information about a dog  The dog should have name and breed  Optional fields (could be null )  The class allows to view and modify the name and the breed at any time  The dog should be able to bark 17

public class Dog { private string name; private string name; private string breed; private string breed; public Dog() public Dog() { } public Dog(string name, string breed) public Dog(string name, string breed) { this.name = name; this.name = name; this.breed = breed; this.breed = breed; } (the example continues) 18

public string Name public string Name { get { return this.name; } get { return this.name; } set { this.name = value; } set { this.name = value; } } public string Breed public string Breed { get { return this.breed; } get { return this.breed; } set { this.breed = value; } set { this.breed = value; } } public void SayBau() public void SayBau() { Console.WriteLine("{0} said: Bauuuuuu!", Console.WriteLine("{0} said: Bauuuuuu!", this.name ?? "[unnamed dog]"); this.name ?? "[unnamed dog]"); }} 19

1. Create an instance  Initialize its properties / fields 2. Manipulate the instance  Read / modify its properties  Invoke methods  Handle events 3. Release the occupied resources  Performed automatically in most cases 21

 Our task is as follows:  Create 3 dogs  The first should be named “Sharo”, the second – “Rex” and the last – left without name  Put all dogs in an array  Iterate through the array elements and ask each dog to bark  Note:  Use the Dog class from the previous example! 22

static void Main() { Console.Write("Enter first dog's name: "); Console.Write("Enter first dog's name: "); string dogName = Console.ReadLine(); string dogName = Console.ReadLine(); Console.Write("Enter first dog's breed: "); Console.Write("Enter first dog's breed: "); string dogBreed = Console.ReadLine(); string dogBreed = Console.ReadLine(); // Use the Dog constructor to assign name and breed // Use the Dog constructor to assign name and breed Dog firstDog = new Dog(dogName, dogBreed); Dog firstDog = new Dog(dogName, dogBreed); // Use Dog's parameterless constructor // Use Dog's parameterless constructor Dog secondDog = new Dog(); Dog secondDog = new Dog(); // Use properties to assign name and breed // Use properties to assign name and breed Console.Write("Enter second dog's name: "); Console.Write("Enter second dog's name: "); secondDog.Name = Console.ReadLine(); secondDog.Name = Console.ReadLine(); Console.Write("Enter second dog's breed: "); Console.Write("Enter second dog's breed: "); secondDog.Breed = Console.ReadLine(); secondDog.Breed = Console.ReadLine(); (the example continues) 23

// Create a Dog with no name and breed // Create a Dog with no name and breed Dog thirdDog = new Dog(); Dog thirdDog = new Dog(); // Save the dogs in an array // Save the dogs in an array Dog[] dogs = new Dog[] { Dog[] dogs = new Dog[] { firstDog, secondDog, thirdDog }; firstDog, secondDog, thirdDog }; // Ask each of the dogs to bark // Ask each of the dogs to bark foreach(Dog dog in dogs) foreach(Dog dog in dogs) { dog.SayBau(); dog.SayBau(); }} 24

Live Demo

Defining and Using Class Constructors

 Constructors are special methods  Invoked at the time of creating a new instance of an object  Used to initialize the fields of the instance  Constructors has the same name as the class  Have no return type  Can have parameters  Can be private, protected, internal, public 27

public class Point { private int xCoord; private int xCoord; private int yCoord; private int yCoord; // Simple parameterless constructor // Simple parameterless constructor public Point() public Point() { this.xCoord = 0; this.xCoord = 0; this.yCoord = 0; this.yCoord = 0; } // More code … // More code …}  Class Point with parameterless constructor: 28

public class Person { private string name; private string name; private int age; private int age; // Parameterless constructor // Parameterless constructor public Person() public Person() { this.name = null; this.name = null; this.age = 0; this.age = 0; } // Constructor with parameters // Constructor with parameters public Person(string name, int age) public Person(string name, int age) { this.name = name; this.name = name; this.age = age; this.age = age; } // More code … // More code …} As rule constructors should initialize all own class fields. 29

 Pay attention when using inline initialization! public class AlarmClock { private int hours = 9; // Inline initialization private int hours = 9; // Inline initialization private int minutes = 0; // Inline initialization private int minutes = 0; // Inline initialization // Parameterless constructor (intentionally left empty) // Parameterless constructor (intentionally left empty) public AlarmClock() public AlarmClock() { } { } // Constructor with parameters // Constructor with parameters public AlarmClock(int hours, int minutes) public AlarmClock(int hours, int minutes) { this.hours = hours; // Invoked after the inline this.hours = hours; // Invoked after the inline this.minutes = minutes; // initialization! this.minutes = minutes; // initialization! } // More code … // More code …} 30

 Reusing constructors (chaining) public class Point { private int xCoord; private int xCoord; private int yCoord; private int yCoord; public Point() : this(0, 0) // Reuse the constructor public Point() : this(0, 0) // Reuse the constructor { } public Point(int xCoord, int yCoord) public Point(int xCoord, int yCoord) { this.xCoord = xCoord; this.xCoord = xCoord; this.yCoord = yCoord; this.yCoord = yCoord; } // More code … // More code …} 31

Live Demo

Defining and Invoking Methods

 Methods are class members that execute some action (some code, some algorithm)  Could be static / per instance  Could be public / private / protected / … 34 public class Point { private int xCoord; private int xCoord; private int yCoord; private int yCoord; public double CalcDistance(Point p) public double CalcDistance(Point p) { return Math.Sqrt( return Math.Sqrt( (p.xCoord - this.xCoord) * (p.xCoord - this.xCoord) + (p.xCoord - this.xCoord) * (p.xCoord - this.xCoord) + (p.yCoord - this.yCoord) * (p.yCoord - this.yCoord)); (p.yCoord - this.yCoord) * (p.yCoord - this.yCoord)); }}

 Invoking instance methods is done through the object (class instance): 35 class TestMethods { static void Main() static void Main() { Point p1 = new Point(2, 3); Point p1 = new Point(2, 3); Point p2 = new Point(3, 4); Point p2 = new Point(3, 4); System.Console.WriteLine(p1.CalcDistance(p2)); System.Console.WriteLine(p1.CalcDistance(p2));}}

Live Demo

Defining and Using Properties

 Properties expose object's data to the world  Control how the data is manipulated  Ensure the internal object state is correct  E.g. price should always be kept positive  Properties can be:  Read-only  Write-only  Read and write  Simplify the writing of code 38

 Properties work as a pair of methods  Getter and setter  Properties should have:  Access modifier ( public, protected, etc.)  Return type  Unique name  Get and / or Set part  Can contain code processing data in specific way, e.g. apply validation 39

public class Point { private int xCoord; private int xCoord; private int yCoord; private int yCoord; public int XCoord public int XCoord { get { return this.xCoord; } get { return this.xCoord; } set { this.xCoord = value; } set { this.xCoord = value; } } public int YCoord public int YCoord { get { return this.yCoord; } get { return this.yCoord; } set { this.yCoord = value; } set { this.yCoord = value; } } // More code... // More code...} 40

 Properties are not obligatory bound to a class field – can be calculated dynamically: public class Rectangle { private double width; private double width; private double height; private double height; // More code … // More code … public double Area public double Area { get get { return width * height; return width * height; } }} 41

 Properties could be defined without an underlying field behind them  It is automatically created by the compiler 42 class UserProfile { public int UserId { get; set; } public int UserId { get; set; } public string FirstName { get; set; } public string FirstName { get; set; } public string LastName { get; set; } public string LastName { get; set; }}… UserProfile profile = new UserProfile() { FirstName = "Steve", FirstName = "Steve", LastName = "Balmer", LastName = "Balmer", UserId = UserId = 91112};

Live Demo

Defining and Using Enumerated Types

 Enumerations are types that hold a value from a fixed set of named constants  Declared by enum keyword in C# 45 public enum DayOfWeek { Mon, Tue, Wed, Thu, Fri, Sat, Sun Mon, Tue, Wed, Thu, Fri, Sat, Sun} class EnumExample { static void Main() static void Main() { DayOfWeek day = DayOfWeek.Wed; DayOfWeek day = DayOfWeek.Wed; Console.WriteLine(day); // Wed Console.WriteLine(day); // Wed }}

46 public enum CoffeeSize { Small = 100, Normal = 150, Double = 300 Small = 100, Normal = 150, Double = 300} public class Coffee { public CoffeeSize size; public CoffeeSize size; public Coffee(CoffeeSize size) public Coffee(CoffeeSize size) { this.size = size; this.size = size; } public CoffeeSize Size public CoffeeSize Size { get { return size; } get { return size; } }} (the example continues)

47 public class CoffeeMachine { static void Main() static void Main() { Coffee normalCoffee = new Coffee(CoffeeSize.Normal); Coffee normalCoffee = new Coffee(CoffeeSize.Normal); Coffee doubleCoffee = new Coffee(CoffeeSize.Double); Coffee doubleCoffee = new Coffee(CoffeeSize.Double); Console.WriteLine("The {0} coffee is {1} ml.", Console.WriteLine("The {0} coffee is {1} ml.", normalCoffee.Size, (int)normalCoffee.Size); normalCoffee.Size, (int)normalCoffee.Size); // The Normal coffee is 150 ml. // The Normal coffee is 150 ml. Console.WriteLine("The {0} coffee is {1} ml.", Console.WriteLine("The {0} coffee is {1} ml.", doubleCoffee.Size, (int)doubleCoffee.Size); doubleCoffee.Size, (int)doubleCoffee.Size); // The Double coffee is 300 ml. // The Double coffee is 300 ml.}}

Live Demo

 Constructors and properties can keep the object's state correct  This is known as encapsulation in OOP  Can force validation when creating / modifying the object's internal state  Constructors define which properties are mandatory and which are optional  Property setters should validate the new value before saving it in the object field  Invalid values should cause an exception 50

51 public class Person { private string name; private string name; public Person(string name) public Person(string name) { this.Name = name; this.Name = name; } public string Name public string Name { get { return this.name; } get { return this.name; } set set { if (String.IsNullOrEmpty(value)) if (String.IsNullOrEmpty(value)) throw new ArgumentException("Invalid name!"); throw new ArgumentException("Invalid name!"); this.name = value; this.name = value; } }} We have only one constructor, so we cannot create person without specifying a name. Incorrect name cannot be assigned

Live Demo

 Classes define specific structure for objects  Objects are particular instances of a class  Classes define fields, methods, constructors, properties and other members  Access modifiers limit the access to class members  Constructors are invoked when creating new class instances and initialize the object's internal state  Enumerations define a fixed set of constants  Properties expose the class data in safe, controlled way 53

Questions?

1. Define a class that holds information about a mobile phone device: model, manufacturer, price, owner, battery characteristics (model, hours idle and hours talk) and display characteristics (size and number of colors). Define 3 separate classes (class GSM holding instances of the classes Battery and Display ). 2. Define several constructors for the defined classes that take different sets of arguments (the full information for the class or part of it). Assume that model and manufacturer are mandatory (the others are optional). All unknown data fill with null. 3. Add an enumeration BatteryType (Li-Ion, NiMH, NiCd, …) and use it as a new field for the batteries. 55

4. Add a method in the GSM class for displaying all information about it. Try to override ToString(). 5. Use properties to encapsulate the data fields inside the GSM, Battery and Display classes. Ensure all fields hold correct data at any given time. 6. Add a static field and a property IPhone4S in the GSM class to hold the information about iPhone 4 S. 7. Write a class GSMTest to test the GSM class:  Create an array of few instances of the GSM class.  Display the information about the GSMs in the array.  Display the information about the static property IPhone4S. 56

8. Create a class Call to hold a call performed through a GSM. It should contain date, time, dialed phone number and duration (in seconds). 9. Add a property CallHistory in the GSM class to hold a list of the performed calls. Try to use the system class List. 10. Add methods in the GSM class for adding and deleting calls from the calls history. Add a method to clear the call history. 11. Add a method that calculates the total price of the calls in the call history. Assume the price per minute is fixed and is provided as a parameter. 57

12. Write a class GSMCallHistoryTest to test the call history functionality of the GSM class.  Create an instance of the GSM class.  Add few calls.  Display the information about the calls.  Assuming that the price per minute is 0.37 calculate and print the total price of the calls in the history.  Remove the longest call from the history and calculate the total price again.  Finally clear the call history and print it. 58

 C# Telerik Academy  csharpfundamentals.telerik.com csharpfundamentals.telerik.com  Telerik Software Academy  academy.telerik.com academy.telerik.com  Telerik Facebook  facebook.com/TelerikAcademy facebook.com/TelerikAcademy  Telerik Software Academy Forums  forums.academy.telerik.com forums.academy.telerik.com