Tagged Questions
4
votes
5answers
128 views
Constructor this() unnecessary?
There was a class U1 that was extending class U.
Class U was empty...
In the constructor of U1 there was this first line, calling the constructor of the superclass...
public U1(Plate plate, int ...
0
votes
5answers
130 views
What exactly happens when an object is instantiated in Java?
I know that when creating an object of a class the constructor builds that object. Say I had these two class:
class Vehicle {
public int a = func();
public int func() {
...
-4
votes
2answers
68 views
Java only uses Default Constructor won't calculate by entered parameters [closed]
I've looked over the code a few times and I'm not sure what is affecting this and forcing it to only use the default constructor. For example if I try to put in 2000 for the amount invested it will ...
-3
votes
3answers
104 views
Are Java constructors only called when they are parameterized? [closed]
Apparently Java thinks my constructor code is not important, so it completely ignores it and then yells at me with a NullPointerException when I try to access an ArrayList that I thought was ...
1
vote
9answers
176 views
Any way to call the default constructor from a parameterized constructor?
Suppose, I have the following code
class C {
int i;
String s;
C(){
System.out.println("In main constructor");
// Other processing
}
C(int i){
...
0
votes
4answers
48 views
Why does constructor with arg undefine the defualt constructor?
Consider -
public class Class_A {
public void func() {...}
public void func(int a){...}
All three -
Class_A a = new Class_A(); // legal
a.func(); // legal
a.func(1); // legal
But ...
0
votes
1answer
115 views
Java Default Constructor Issue - What Actually Constitutes a 'Default Constructor'? [duplicate]
Possible Duplicate:
Java default constructor
I am working on Java practice questions and came across this :
Given:
class X {}
class Y {Y () {}}
class Z {z(int i ) {} }
Which class has ...
125
votes
10answers
4k views
Why does the default parameterless constructor go away when you create one with parameters
In C#, C++ and Java, when you create a constructor taking parameters, the default parameterless one goes away. I have always just accepted this fact, but now I've started wondering why.
What is the ...
3
votes
4answers
503 views
If we define own constructor then how does java initialize instance variables to their default value
Java assigns default values to instance variables using default constructor. But if we define our own constructor then how does java give default values (because when we write our constructor then, ...
4
votes
3answers
242 views
Why can't we have this() and super() together in Java?
I have this program:
public class A
{
public A(){
System.out.println("I am in A");
}
public static void main(String args[]){
B a = new B("Test");
}
}
class B extends A
{
...
1
vote
7answers
2k views
Using default Constructors in java, even if the parameterized constructors are present
I just wanted to clear my concept here, so i am asking...
If I define an explicit parameterized constructor for my class, then can i still invoke the default constructor provided by the java ...
0
votes
4answers
294 views
Cannot find symbol - constructor item()
Hello wondering if anyone could lend me a hand!
// Create a Item oject
item item = new item();
Error - Cannot find symbol - Constructor item();
public class ...
0
votes
4answers
78 views
Constructor related error in Java
I am new to Java and wrote this code. It has a simple class Box and two attributes width and length and some functions.
class Box
{
private int width;
private int length;
Box(int w, int ...
1
vote
3answers
138 views
Preferred way of marking a Java constructor/method as not for client use?
I want to mark some default constructors and setters as not available/recommended for use. I need it to be somewhat similar to the annotation @Deprecated, but it shouldn't have the same meaning. I'm ...
0
votes
3answers
3k views
Spring @Autowired constructor gives No default constructor found
Some strange behavior from Spring 3.0 here.
package com.service.schedule;
import org.springframework.stereotype.Component;
@Component("outroJob")
public class OutroJob {
public void printMe() ...
5
votes
3answers
4k views
Does Spring require all beans to have a default constructor?
I don't want to create a default constructor for my auditRecord class.
But Spring seems to insist on it:
org.springframework.beans.factory.BeanCreationException:
Error creating bean with name ...
0
votes
2answers
412 views
Pretty simple constructor question that I just can't get. Java
Create a class with a default constructor (one that takes no arguments) that prints a message. In your main() method, create an object of this class.
Add an overloaded constructor to your code from ...
1
vote
4answers
294 views
Call on different constructor with 'default' HashMap
I had a lot of testcases running on the class MyClass, using it's default constructor: MyClass().
Now the requirements of MyClass changed and the user can provide a HashMap to indicate some pairs . ...
-2
votes
3answers
347 views
If statement not working correctly for dates
I wrote an if statement that should write different output depending on the data. It works if int y = 2000, m = 5, d = 06;, however it doesn't output the correct value when int y = 2889, m = 44, d = ...
2
votes
3answers
4k views
How to mock the default constructor of the Date class with JMockit?
I want to mock the default constructor of java.util.date so it does not construct
a Date object representing the time when it was created, but always the same Date object (in my example below 31 Dec ...
15
votes
7answers
1k views
Is it possible in java to create 'blank' instance of class without no-arg constructor using reflection?
I have a class which has not default constructor. And I need a way to get 'blank' instance of this class. 'blank' means that after instantiation all class fields should has default values
like null, 0 ...
10
votes
7answers
1k views
Is there a reason to explicitly code a default constructor when there are no other constructors?
I recently saw this constructor in a class:
public MyClass(){ }
There were no other constructors.
Is there a reason for this? Java automatically creates a default constructor, so why would you ...
4
votes
4answers
4k views
Java: Instantiating a generic class with no default constructor
I am trying to do this:
public class BaseTable<T extends TableEntry>
{
protected int mRows;
protected int mCols;
protected ArrayList<T> mEntries;
public BaseTable(int ...
17
votes
7answers
33k views
Default constructors and inheritance in Java
I have a question about default constructors and inheritance in Java.
Generally, if you write a class and do not include any constructor, Java provides automatically for you a default constructor ...
