Exploring Object Oriented Programming in Dart

20 Jul 2023 Balmiki Mandal 0 Dart Programming

Exploring Object Oriented Programming In Dart

Dart is a client-optimized programming language for fast apps on any platform. It is developed by Google and is used to build web, server, and mobile applications. Object-oriented programming (OOP) is a style of programming in which data and functions are organized into classes and objects. This programming paradigm encourages the use of code reusability and makes managing complex systems easier. In this article, we will explore Object-Oriented Programming basics in Dart.

What is Object-Oriented Programming?

Object-Oriented Programming (OOP) is a style of programming that focuses on using objects to represent data and functions. An object contains both data and behavior (functions). Each object has its own state which can be modified and manipulated through the functions defined in its class. OOP helps developers organize their code into self-contained modules, making it easier to debug and maintain.

Classes in Dart

A class is a blueprint for an object. It defines the data and behavior that the class's objects will have. In Dart, each class begins with the keyword “class” followed by the class name and a code block enclosed in curly braces:

class Person {
  // class variables and methods
}

Class variables store information about the class, such as its name and properties. Class methods define the behavior associated with the class. These methods are called upon when an object of the class is created and used.

Objects in Dart

An object is an instance of a class that stores data and has its own set of behaviors that can be invoked. To create an object in Dart, you must first define the class and then you can use the new keyword to instantiate it:

class Person {
  String name;
  int age;
}

Person p = new Person();
p.name = "John";
p.age = 25;

Once an object is created, its data can be accessed and modified using the dot (.) operator and its behaviors can be called upon using the same operator.

Inheritance in Dart

Inheritance is a feature of OOP that allows developers to create classes that share characteristics from parent classes. This is useful for creating powerful objects that are easy to manage. In Dart, a class can extend another class using the extends keyword. All properties and methods from the parent class will be inherited by the child class:

class Animal {
  String name;
  void makeNoise() {
    // ...
  }
}

class Cat extends Animal {
  int age;
  void meow() {
    // ...
  }
}

In the example above, the Cat class inherits the name property and makeNoise() method from the Animal class. The Cat class also has its own age property and meow() method.

Polymorphism in Dart

Polymorphism is another OOP concept that allows for objects of different types to behave differently. This is useful for creating abstract objects that do not need to be explicitly defined before use. In Dart, polymorphism is achieved through method overriding and abstract classes:

abstract class Animal {
  void makeNoise();
}

class Cat extends Animal {
  void makeNoise() {
    print("Meow!");
  }
}

class Dog extends Animal {
  void makeNoise() {
    print("Bark!");
  }
}

void main() {
  Animal cat = new Cat();
  Animal dog = new Dog();

  cat.makeNoise(); // Prints "Meow!"
  dog.makeNoise(); // Prints "Bark!"
}

In the example above, the Animal class is an abstract class that defines a method named makeNoise(). The Cat and Dog classes are subclasses of Animal and override the makeNoise() method to produce different outputs. This is an example of polymorphism.

Conclusion

Object-Oriented Programming is a popular programming paradigm that helps developers structure their code with classes, objects, inheritance, and polymorphism. In this article, we explored how these concepts are used in Dart to support the development of complex applications.

BY: Balmiki Mandal

Related Blogs

Post Comments.

Login to Post a Comment

No comments yet, Be the first to comment.