| |
|
|
Jörg Sellmeyer | |
|
| Windows XP SP2 XProfan X4... und hier mal was ganz anderes als Profan ... | 05.04.2012 ▲ |
|
|
|
|
RGH | Es hindert Dich niemand, die passenden Konstruktoren zu schreiben (PROC xpRect.xpRect) und Deinem Programm hinzuzufügen, etwa eine INC mit allen Konstruktoren.
Gruß Roland |
|
|
| XProfan X2Intel Duo E8400 3,0 GHz / 4 GB RAM / 1000 GB HDD - ATI Radeon HD 4770 512 MB - Windows 7 Home Premium 32Bit - XProfan X4 | 05.04.2012 ▲ |
|
|
|
|
Jörg Sellmeyer | Ja, schon klar. Aber wieviel praktischer wäre es, wenn das gleich schon drin wäre! |
|
|
| Windows XP SP2 XProfan X4... und hier mal was ganz anderes als Profan ... | 05.04.2012 ▲ |
|
|
|
|
| Wie der StartPaint-Stack! |
|
|
| |
|
|
|
Jörg Sellmeyer | RGH (05.04.12)
Es hindert Dich niemand, die passenden Konstruktoren zu schreiben (PROC xpRect.xpRect) und Deinem Programm hinzuzufügen, etwa eine INC mit allen Konstruktoren.
Gruß Roland
Ach ja - da haben meine Versuche leider nicht das gewünschte Ergebnis gebracht Das jedenfalls bringt nix: KompilierenMarkierenSeparieren
Proc xpRect.xpRect
Parameters b#,a!,b!,c!,d!
b# = New(xpRect)
With b#
.posx! = a!
.posy! = b!
.x! = c!
.y! = d!
EndWith
Dispose b#
EndProc
Var R# = New(xpRect,R#,10,10,100,100)
With R#
Print .posx!, .posy!
Print .x!,.y!
EndWith
WaitInput
|
|
|
| Windows XP SP2 XProfan X4... und hier mal was ganz anderes als Profan ... | 06.04.2012 ▲ |
|
|
|
|
| Genau, wie der StartPaint-Stack!
[offtopic]falsches Thema stimmts? [/offtopic]
Übersehe ich jetzt was oder ist das Dispose fehl am Platz? |
|
|
| |
|
|
|
Jörg Sellmeyer | Das ist sicher komplett falsch. Aber deshalb frage ich ja auch nach... |
|
|
| Windows XP SP2 XProfan X4... und hier mal was ganz anderes als Profan ... | 06.04.2012 ▲ |
|
|
|
|
RGH | Ja, das ist komplett falsch! Siehe Hilfe zum Thema "Konstruktor".
Zu berücksichtigen ist, dass es sich hier um Strukturen handelt. Und Strukturen enthalten natürlich keinerlei Methoden, also auch keine Konstruktoren. Aber man kann die Struktur einer Klasse vererben, die einen Konstruktor hat: KompilierenMarkierenSeparierenClass myRect = xpRect, myRect@
Proc myRect.myRect
Parameters a!,b!,c!,d!
.posx! = a!
.posy! = b!
.x! = c!
.y! = d!
EndProc
Var R# = New(myRect,10,10,100,100)
With R#
Print .posx!, .posy!
Print .x!,.y!
EndWith
WaitInput
Gruß Roland |
|
|
| Intel Duo E8400 3,0 GHz / 4 GB RAM / 1000 GB HDD - ATI Radeon HD 4770 512 MB - Windows 7 Home Premium 32Bit - XProfan X4 | 06.04.2012 ▲ |
|
|
|
|
Jörg Sellmeyer | Ok - jetzt verstehe ich, was Du meinst. Das hatte ich mir auch schon zusammengebaut. Aber so ein eingebauter Konstruktor für die internen Strukturen hätte doch was, oder? |
|
|
| Windows XP SP2 XProfan X4... und hier mal was ganz anderes als Profan ... | 06.04.2012 ▲ |
|
|
|