Classes

Classes in programming are blueprints for creating objects, providing a way to encapsulate data and behavior into a single entity. They enable developers to model real-world entities or abstract concepts in code, promoting code reusability, organization, and modularity. Common use cases for classes include modeling objects with attributes and methods, such as creating instances of a User class to represent users in a system, or defining a Shape class with methods to calculate area and perimeter for various shapes. Classes facilitate the implementation of object-oriented programming principles such as inheritance, polymorphism, and encapsulation, allowing for the creation of flexible and scalable software systems. Overall, classes are essential tools in programming for creating modular and maintainable codebases by representing entities and defining their behaviors in a structured manner.

Select Languages

Examples

C

#include <stdio.h>
#include <stdlib.h>
#include <string.h>

#define MAX_CARS 100

struct Cars {
  char* carList[MAX_CARS];
  int count;
};

void addCar(struct Cars *cars, const char *car) {
  if (cars->count < MAX_CARS) {
    cars->carList[cars->count] = strdup(car);
    cars->count++;
  } else {
    printf("Maximum limit reached.\n");
  }
}

void removeFirst(struct Cars *cars) {
  if (cars->count > 0) {
    free(cars->carList[0]);
    for (int i = 1; i < cars->count; i++) {
      cars->carList[i - 1] = cars->carList[i];
    }
    cars->count--;
  } else {
    printf("No cars to remove.\n");
  }
}

const char* getFirstVal(struct Cars *cars) {
  if (cars->count > 0) {
    return cars->carList[0];
  }
  return "";
}

int main() {
  struct Cars newList = {{0}, 0};
  addCar(&newList, "Honda");
  addCar(&newList, "Mazda");
  addCar(&newList, "Toyota");
  removeFirst(&newList);
  const char* firstCar = getFirstVal(&newList);
  printf("%s\n", firstCar);
  return 0;
}

C#

using System;
using System.Collections.Generic;

public class Cars {
  protected List<string> carList = new List<string>();
  
  public void addCar(string car) {
    carList.Add(car);
  }
  
  public void removeFirst() {
    carList.RemoveAt(0);
  }
  
  public string getFirstVal() {
    if (carList.Count > 0) {
      return carList[0];
    }
    return "";
  }
  public static void Main(string[] args) {
    Cars newList = new Cars();
    newList.addCar("Honda");
    newList.addCar("Mazda");
    newList.addCar("Toyota");
    newList.removeFirst();
    
    string firstCar = newList.getFirstVal();
    Console.WriteLine(firstCar);
  }
}

C++

#include <iostream>
#include <string>
#include <vector>
using namespace std;

class Cars {
  protected:
    vector<string> carList;
  public: 
    void addCar(string car) {
      carList.push_back(car);
    }
    void removeFirst() {
      carList.erase(carList.begin());
    }
    string getFirstVal() {
      if (carList.size() > 0) {
        return carList[0];
      }
      return "";
    }
};

Cars newList;
newList.addCar("Honda");
newList.addCar("Mazda");
newList.addCar("Toyota");
newList.removeFirst();
string firstCar = newList.getFirstVal();
cout << firstCar << endl;

Go

import "fmt"

type Cars struct {
  carList  []string
}

func (cars *Cars) addCar(name string) {
  cars.carList = append(cars.carList, name)
}

func (cars *Cars) removeFirst() { 
  cars.carList = cars.carList[1:]
}

func (cars Cars) getFirstVal() string { 
  if(len(cars.carList) > 0) {
    return cars.carList[0]
  }
  return ""
}

newList := Cars{}
newList.addCar("Honda")
newList.addCar("Mazda")
newList.addCar("Toyota")
newList.removeFirst()
firstCar := newList.getFirstVal()
  
fmt.Println(firstCar)

Java

import java.util.ArrayList;

class Cars {
  protected ArrayList<String> carList =
    new ArrayList<>();

  public void addCar(String car) {
    carList.add(car);
  }
  public void removeFirst() {
    carList.remove(0);
  }
  public String getFirstVal() {
    if(carList.size() > 0) {
      return carList.get(0);    
    }
    return "";
  }
  public static void main(String[] args) {
    Cars newList = new Cars();
    newList.addCar("Honda");
    newList.addCar("Mazda");
    newList.addCar("Toyota");
    newList.removeFirst();
    
    String firstCar = newList.getFirstVal();
    System.out.println(firstCar);
  }
}

JavaScript

class Cars {
  constructor() {
    this.carList = [];
  }
  addCar(name) {
    this.carList.push(name);
  }
  removeFirst() {
    this.carList.shift();
  }
  getFirstVal() {
    if (this.carList.length) {
      return this.carList[0];
    } 
    return '';
  }
}

const newList = new Cars();
newList.addCar("Honda");
newList.addCar("Mazda");
newList.addCar("Toyota");
newList.removeFirst();
const firstCar = newList.getFirstVal();
console.log(firstCar);

Kotlin

class Cars {
  val carList = mutableListOf<String>();
 
  fun addCar(name: String) {
    carList.add(name);   
  }
  
  fun removeFirst() {
    carList.removeAt(0);
  }
  
  fun getFirstVal():String {
    if(carList.count() > 0) {
      return carList[0];
    }
    return "";
  }
}

val newList = Cars();
newList.addCar("Honda"); 
newList.addCar("Mazda");
newList.addCar("Toyota");
newList.removeFirst();
  
val firstCar = newList.getFirstVal();
println(firstCar);

MatLab

classdef Cars < handle
  properties
    carList = []
  end
  methods
    function obj = addCar(obj, car)
      obj.carList = [obj.carList , car];
    end
    function obj = removeFirst(obj)
      obj.carList (1) = [];
    end
    function firstCar = getFirstVal(obj)
      firstCar = obj.carList(1);
    end
  end
end

// command line
newList = Cars
newList.addCar("Honda");
newList.addCar("Mazda");
newList.addCar("Toyota");
newList.removeFirst();

firstCar = getFirstVal(newList);
disp(firstCar);

PHP

class Cars {
  protected $carList = array();
  
  public function addCar($car) {
    array_push($this->carList, $car);
  }
  
  public function removeFirst() {
    array_shift($this->carList);
  }
  
  public function getFirstVal() {
    if (count($this->carList) > 0) {
      return $this->carList[0]; 
    }
    return "";
  }
}

$newList = new Cars();
$newList->addCar("Honda");
$newList->addCar("Mazda");
$newList->addCar("Toyota");
$newList->removeFirst();

$firstCar = $newList->getFirstVal();

Python

class Cars:
  def __init__ (self):
    self.carList = []
    
  def addCar(self, name):
    self.carList.append(name)
 
  def removeFirst(self):
    self.carList.pop(0)

  def getFirstVal(self):
    if len(self.carList) > 0:
      return self.carList[0]
    return '';

newList = Cars()
newList.addCar('Honda')
newList.addCar('Mazda')
newList.addCar('Toyota')
newList.removeFirst()
firstCar = newList.getFirstVal()
print(firstCar)

R

Cars <- setRefClass("Cars",
  fields = list(carList = "list"),
  methods = list(
    addCar = function(car) {
      carList <<- append(carList, car)
    },
    removeFirst = function() {
      carList <<- carList[-1]
    }
  )
)

newList <- Cars()
newList$addCar("Honda")
newList$addCar("Mazda")
newList$addCar("Toyota")
newList$removeFirst()

# direct reference only
firstCar <- newList$carList[1]
print(firstCar)

Ruby

class Cars
  def initialize
    @carList = []
  end
 
  def addCar(name)
    @carList << name
  end
  def removeFirst()
    @carList.shift()
  end
  def getFirstVal()
    if @carList.length > 0
      return @carList[0]
    end
    return ''
  end
end

newList = Cars.new
newList.addCar("Honda")
newList.addCar("Mazda")
newList.addCar("Toyota")
newList.removeFirst()

firstCar = newList.getFirstVal()
puts firstCar

Rust

use std::collections::VecDeque;

struct Cars {
  carList: VecDeque<string>,
}

impl Cars {
  fn new() -> Cars {
    let mut carList = VecDeque::new();
    Cars {
      carList
    }
  }
  fn addCar(&mut self, name: string) {
    self.carList.push_back(name);   
  }
  
  fn removeFirst(&mut self) {
    self.carList.remove(0);
  }
  
  fn getFirstVal(&mut self) -> string {
    if self.carList.len() > 0 {
      return self.carList[0].to_string();
    }
    return "".to_string();
  }
}

let mut newList = Cars::new();

newList.addCar("Honda".to_string());
newList.addCar("Mazda".to_string());
newList.addCar("Toyota".to_string());
newList.removeFirst();

let firstCar = newList.getFirstVal();
println!("{}", firstCar)

Scala

import scala.collection.mutable.Queue

// written in Scala 2
class Cars{
  var carList = Queue[String]();
  
  def addCar(car:String) {
    carList.enqueue(car);
  }
  def removeFirst() {
    carList.dequeue();
  }
}

val newList = new Cars();
newList.addCar("Honda");
newList.addCar("Mazda");
newList.addCar("Toyota");
newList.removeFirst();

val firstCar = newList.carList.front
print(firstCar);

Swift

class Cars {
  var carList:Array<String> = []
  
  func addCar(car:String) {
    self.carList.append(car);
  }

  func removeFirst() {
    self.carList.removeFirst();
  }

  func getFirstVal()->String {
    if (self.carList.count > 0) {
      return self.carList[0];
    } 
    return "";
  }
}

let newList:Cars = Cars();
newList.addCar(car: "Honda");
newList.addCar(car: "Mazda");
newList.addCar(car: "Toyota");
newList.removeFirst();

var firstCar:String =
  newList.getFirstVal();
print(firstCar);

TypeScript

class Cars {
  carList: string[];
  constructor() {
    this.carList = [];
  }
  addCar(name:string) {
    this.carList.push(name);
  }
  removeFirst() {
    this.carList.shift();
  }
  getFirstVal():string {
    if (this.carList.length) {
      return this.carList[0];
    } 
    return '';
  }
}

const newList:Cars = new Cars();
newList.addCar("Honda");
newList.addCar("Mazda");
newList.addCar("Toyota");
newList.removeFirst();
const firstCar:string =
  newList.getFirstVal();
  
console.log(firstCar);

Copyright 2025. All Rights Reserved. IronCodeMan.