Basic Pascal Tutorial/Chapter 5/Records/ja

From Lazarus wiki
Revision as of 09:56, 30 September 2015 by Derakun (talk | contribs) (Created page with "{{Records/ja}} 5E - レコード (著者: Tao Yue, 状態: 原文のまま変更なし) A record allows you to keep related data items in one structure. If you want informat...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

Template:Records/ja

5E - レコード (著者: Tao Yue, 状態: 原文のまま変更なし)

A record allows you to keep related data items in one structure. If you want information about a person, you may want to know name, age, city, state, and zip.

To declare a record, you'd use:

TYPE
  TypeName = record
    identifierlist1 : datatype1;
    ...
    identifierlistn : datatypen;
  end;

For example:

type
  InfoType = record
    Name : string;
    Age : integer;
    City, State : String;
    Zip : integer;
  end;

Each of the identifiers Name, Age, City, State, and Zip are referred to as fields. You access a field within a variable by:

 VariableIdentifier.FieldIdentifier

A period separates the variable and the field name.

There's a very useful statement for dealing with records. If you are going to be using one record variable for a long time and don't feel like typing the variable name over and over, you can strip off the variable name and use only field identifiers. You do this by:

WITH RecordVariable DO
BEGIN
  ...
END;

Example:

with Info do
begin
  Age := 18;
  ZIP := 90210;
end;
previous contents next