I've been using C# for a long time and now I need to do something in Java.
Is there something like C#'s struct automatic constructor in java ?
What I mean is In C#
struct MyStruct
{
public int i;
}
class Program
{
void SomeMethod()
{
MyStruct mStruct; // Automatic constructor was invoked; This line is same as MyStruct mStruct = new MyStruct();
mStruct.i = 5; // mStruct is not null and can i can be assigned
}
}
Is it possible to force java to use default constructor on declaration ?