In PHP, to create a new object you would do something like this, $dog = new Dog;. But in Java you would do something like, Dog x = new Dog; or Dog x;. Could someone explain why you need to say the Dog class in front of the variable?
|
|
|||||
|
|
Java statically and explicitly typed. The type of the variable may be different from the type of the value it holds, due to inheritance. For example:
Here the type of the Now in some other languages (C# 3 being the obvious example as a near neighbour of Java) you can use implicitly typed local variables when you actually want the type of a local variable to be the same as the type of the expression used to initialize it:
(The type inferencing capabilities of some other statically typed languages go well beyond this.) So, to go back to your original question, the answer is:
|
|||
|
|
|
You need to precise the type because Java is a strong and static typed language. If you declare Another example :
The following code is valid because
|
|||||||
|
|
In Java you would call the constructor like this (in case it has no parameters):
By writing the class-name in front of the variable, you tell Java that your variable
See PHP Variables at w3schools:
|
|||||
|
|
I think it is because Java is strictly typed. You need to put the type of the object at compile time. |
|||
|
|
|
PHP is a dynamically-typed language, which means variables can change their type to whatever you assign to them. If you took your Also, if you're wondering why it doesn't just infer the type automatically - which can work even in a static-type system - the |
|||
|
|
|
Thats java syntax for creating an object of a class, also called as creating an instance. For example,
And you use the dot(.) operator to access the object's instance variables and methods. |
|||
|
|