Class 2 Definition and use

Source: Internet
Author: User

Before using the class, use the keyword type to declare a class, such

Type

A = Class

I, J, K: integer;

Procedure Seta (A, B, C: integer );

Function Gera (): integer;

End;

A class has been defined here. Now we use the class

Before using the class, we must first give the following two lines

Procedure Seta (A, B, C: integer );

Function Gera (): integer;

The Code implements the following functions:

Function A. Geta (): integer;
Begin

Result: = I + J + K;
Writeln (result );
End;

Procedure A. Seta (A, B, C: integer );
Begin
I: =;
J: = B;
K: = C;
End;

First, let's use Class A as an object A1.

VaR

A1:;

Begin
{Todo-ouser-cconsole main: insert code here}
A1: = A. Create; // instantiate A1
A1.seta (1, 2, 3 );
A1.geta (); // The result is 6.
Readln;
End.

The next lesson explains encapsulation, inheritance, and polymorphism. Keep up with the new...

Class 2 Definition and use

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.