Tagged Questions
14
votes
7answers
6k views
How does one instantiate an array of maps in Java?
I can declare an array of maps using generics to specify the map type:
private Map<String, Integer>[] myMaps;
However, I can't figure out how to instantiate it properly:
myMaps = new ...
2
votes
3answers
41 views
Enums that cross reference each other produce different results depending on order called
I have two enums that cross reference each other. Each one has a constructor that has a parameter for other enum.
They look something like:
SchoolEnum(ImmuneEnum value)
{
this.immune = value;
}
...
1
vote
4answers
35 views
Instantiating object from inside the main of that class in Java
I was looking through my OOP class documentation and I found this example:
class Student {
private String name;
public int averageGrade;
public Student(String n, int avg) {
name ...
1
vote
2answers
74 views
Instantiating a generic extension of an abstract class
Trying to write some generalised code for Genetic Algorithms and I have an abstract class Genotype as follows:
public abstract class Genotype {
private ArrayList<Gene> genotype = new ...
0
votes
3answers
40 views
create an object of an abstract class != instantiate the abstract class?
I have learned that we can't instantiate an abstract class. But today i tested some codes and i feel confused about it.
package MainPackage;
abstract class abstractClass {
abstract abstractClass ...
0
votes
1answer
47 views
What is the term used to describe assigning values to an object without first instantiating it?
E.g.
Car myCar = Car.Ford
instead of
Car myCar = new Car();
myCar = Car.Ford
0
votes
1answer
64 views
Calling a method on Session Bean from POJO?
Given only the fully qualified class name/interface name of the Session Bean, is it possible to instantiate call a method on it from a POJO?
If yes, how?
Thanks,
TheLameProgrammer
0
votes
2answers
89 views
How to instantiate polygon array in java
I thought that
Polygon[] polygon = new Polygon[3];
would work. It runs through the 'new' line completly fine, but once it hits adding a point, it does a null pointer exeption. I add a point like ...
-2
votes
3answers
933 views
Confusing with memory allocation of array in Java
I get annoying to comprehend memory allocation of array in Java,could your guys give me some clarification about this.Following is an example that i want you to give me the result of how many object ...