Access types to records containing strings
From: Stefan Merwitz (thebiggestfan2002_at_yahoo.de)
Date: 01/29/05
- Next message: Adrian Knoth: "Re: Input a string (again)"
- Previous message: Stefan Merwitz: "Input a string (again)"
- Next in thread: Martin Krischik: "Re: Access types to records containing strings"
- Reply: Martin Krischik: "Re: Access types to records containing strings"
- Reply: Dmitry A. Kazakov: "Re: Access types to records containing strings"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Date: Sat, 29 Jan 2005 09:58:55 +0100
Hello everybody,
it's me again. I need to implement a list containing strings using
access types. Is there a way to implement this using variable length
strings:
private type list;
private type listobject is record
sContent: string(1..30);
Next := list;
end record;
private type list is access listobject;
With the knowledge I have till now, I think it's only possible with
fixed length strings. Am I right or is there any other way?
Thanks in advance,
Stefan
- Next message: Adrian Knoth: "Re: Input a string (again)"
- Previous message: Stefan Merwitz: "Input a string (again)"
- Next in thread: Martin Krischik: "Re: Access types to records containing strings"
- Reply: Martin Krischik: "Re: Access types to records containing strings"
- Reply: Dmitry A. Kazakov: "Re: Access types to records containing strings"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Relevant Pages
|