Analiza systemów informatycznych, Wykład 3, Podejście obiektowe


Podejście obiektowe

Pojęcie Obiektu

Interface i Implementacja

Analiza a obiekty

Elementy diagramu klas

Przykład Narzędzi

Diagram Klas

import Klient;

/**

* Class Klient indywidualny

*

*/

public class Klient indywidualny extends Klient {

// Fields

// Methods

// Constructors

// Accessor Methods

// Operations

}

Klasa Zamówienie

import java.util.*;

/** Class Zamówienie */

public class Zamówienie {

private String data = "today";

private int wartość;

private String getData ( ) { return data; }

/** Set the value of data */ private void setData ( String value ) { data = value }

/** Get the value of wartość @return the value of wartość */

private int getWartość ( ) { return wartość; }

private void setWartość ( int value ) { wartość = value; }

public send ( ) {

}

}



Wyszukiwarka