Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
2  
Because php, well... s**ks. (highly subjective) – whiskeysierra Feb 28 '10 at 23:55

6 Answers

up vote 5 down vote accepted

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:

Animal dog = new Dog();

Here the type of the dog variable is Animal, but the value it holds is a reference to an instance of Dog.

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:

var dog = new Dog(); // Equivalent to Dog dog = new Dog();

(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:

  • The dog variable has a type which is known at compile-time; this isn't true in PHP
  • The type of the variable has to be explicitly stated in Java; this is related to static typing, but isn't a requirement of static typing
share|improve this answer

You need to precise the type because Java is a strong and static typed language.

If you declare x as a Dog, it can only be a Dog or a subclass of Dog.

Another example :

public class Animal {
}

public class Dog extends Animal {
}

public class Cat extends Animal {
}

The following code is valid because x is declared as Animal, it can be a Dog or a Cat, or any subclass of Animal :

Animal x;
x = new Dog();
x = new Cat();
share|improve this answer
+1 for good, complete answer. I will just add that the type of the variable can be an interface too, as long as the class after the 'new' implements this interface. – PhiLho Feb 28 '10 at 9:24
Thanks, I understand now! – Dr Hydralisk Feb 28 '10 at 9:33
It's possible to have a strong and static typed language that doesn't require you to declare the type twice (e.g. Scala). I think a more accurate answer is what you said plus "... and Java does very little in the way of type inference." – Grundlefleck Feb 28 '10 at 9:43

In Java you would call the constructor like this (in case it has no parameters):

Dog x = new Dog();

By writing the class-name in front of the variable, you tell Java that your variable x is of type Dog. This allows Java to find out you're doing something wrong when writing:

Dog x = new Cat();

See PHP Variables at w3schools:

PHP is a Loosely Typed Language

In PHP, a variable does not need to be declared before adding a value to it.

In the example above, you see that you do not have to tell PHP which data type the variable is.

PHP automatically converts the variable to the correct data type, depending on its value.

In a strongly typed programming language, you have to declare (define) the type and name of the variable before using it.

In PHP, the variable is declared automatically when you use it.

share|improve this answer
1  
It seems you like cats and dogs too ;) – Desintegr Feb 28 '10 at 9:03

I think it is because Java is strictly typed. You need to put the type of the object at compile time.

share|improve this answer

PHP is a dynamically-typed language, which means variables can change their type to whatever you assign to them. If you took your $dog = new Dog and later said $dog = 3, the variable would change from holding a Dog to an int. In a static-type system like Java, you have to declare the type of each variable, and assigning something incompatible to it would be a compiler error.

Also, if you're wondering why it doesn't just infer the type automatically - which can work even in a static-type system - the Dog x indicates you're creating a Dog object reference, but you might not be instantiating an actual Dog object there; say you had classes for different breeds of dog (that all inherited from the Dog base class), Dog x = new StBernard() would be perfectly valid.

share|improve this answer

Thats java syntax for creating an object of a class, also called as creating an instance.

For example, Dog adog; where adog is a reference variable of type Dog.

Dog adog=new Dog(); where adog is a reference variable of type Dog which is now referring to the Dog object in memory.

And you use the dot(.) operator to access the object's instance variables and methods.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.