Registriert seit: 16. Jan 2004
Ort: Bendorf
5.219 Beiträge
Delphi 10.2 Tokyo Professional
|
AW: Zugriff auf String^ (String pointer)
16. Feb 2017, 13:43
Lies den 2. Teil meiner Antwort.
=>
Delphi-Quellcode:
var
NormalerString : String;
PointerString : PChar;
begin
NormalerString := 'Hallo Welt!';
PointerString := PChar(Integer(NormalerString) + 5);
ShowMessage(PointerString);
Das ist aber deutlich gefährlicher in Hinblick auf Unicode strings ab Delphi 2009.
Michael "Programmers talk about software development on weekends, vacations, and over meals not because they lack imagination,
but because their imagination reveals worlds that others cannot see."
Geändert von Neutral General (16. Feb 2017 um 13:48 Uhr)
|