About the author
Suppose you have these definitions:
var Options: array of JavaVMOption; VM_Args: JavaVMInitArgs;
How do you initialize them?
Back in the days, you would use:
Options := nil; FillChar(VM_Args, SizeOf(VM_Args), #0);
These days, you would use:
Options := Default(JavaVMOption); // fail to compile VM_Args := Default(JavaVMInitArgs);
However, Default(JavaVMOption) would fail to compile, because you need to use a type of the variable, not the element of an array that declares the type.
So, you'll rewrite Options as
Options: TArray<JavaVMOption>;
and then
Options := Default(TArray<JavaVMOption>);
You can also use:
Initialize(Options);
In addition, you can also do this, by way of passing a parameter:
procedure DoSomething(out Options: TArray<JavaVMOption>);
How to free more space on your home drive by redirecting the location for SDKs in RAD Studio
Learn the command line used to compile System.pas in Delphi
A method to design records so that they're allocated on a specific byte boundary, such as 16 bytes, 512 bytes, 4096 bytes, etc.
Learn why the map is cool in Go!