Tagged Questions
0
votes
4answers
59 views
Java Null Pointer Exceptions
I am getting a null pointer exception that I cannot think how to fix. The array in question is a class array, and should be accessible to the method that is utilizing it.
Here is the main method:
...
0
votes
4answers
62 views
Array of Objects
In the question below I not getting the bold line. Does that line mean create an array objects of class compartment? Because as per my knowledge Java doesn't have concept of pointers.
Create an ...
-1
votes
3answers
105 views
C++ OOP pointer trick in java
I'm new to Java, but I have quite some experience with C++. There is something I want to do in Java that can only be accomplished with pointers in C++. Since code explains more than a thousand words:
...
6
votes
3answers
131 views
How do I extract the K “smallest” elements from a list of objects?
I'm looping through a List to find a particular entry, then assigning that to a variable and trying to remove it later. It's easier to demo than to explain.
ArrayList<Example> list1 = ...
0
votes
3answers
56 views
Newbie pointer rs.next
I would like to see only that products user is looking for them, but when second if is executed it will push(pointer or whatever is there) to next ID(id I have as unique so it will push to nowhere) ...
0
votes
1answer
45 views
Hashmap or Map of object pointer in Java
I'm trying to make a class schedule in Java for my course final project, but I'm getting some troubles. I need a way to store a pointer of an object (object of type CourseClass or Class) in a Hashmap ...
1
vote
1answer
75 views
My program is throwing a null pointer exception and I cannot figure out why. Anybody got a pair of fresh eyes for me?
Hello people of the internet. I am writing a program in Java for my intro to cs class that creates a gui with 12 buttons and a text field. When the user presses one of the buttons, the corresponding ...
0
votes
5answers
84 views
Converting C++ code with pointers into a Java equivalent
So I'm trying to convert this bit of code to use in my Java program. However, it has a pointer and I'm not sure what would be the best way of translating that into Java.
/**
* 32-bit Multiplicative ...
2
votes
5answers
130 views
How does Java Object reference works?
I running to a situation and I am very confused. Please help me out.
Let's say I have a code like this.
MyClass obj1 = null;
List<MyClass> testList = new ArrayList<MyClass>();
...
-2
votes
1answer
47 views
How do I fix my scanner input that is null?
Hi I am new at java programming and ran into a problem on my latest project. I am making a score generator for bowling and finished the code, except when I went to test it, it said
"Exception in ...
-2
votes
1answer
72 views
Multithreaded (shared memory, no MPI) code to read lots of subarrays in C++ [closed]
Since Java forces to create new int[] arrays and this requires lots of memory for my application, I end up with the OutOfMemoryError. Now I decided to switch to C++ and create an array once and use ...
2
votes
6answers
53 views
Point to a hashSet java
How would I write an if statement that says: if pos2[targetPos3] doesn't point to a hashset (is not a hashset) ? I tried that but it still gives me a null point exception.
Object[] pos2;
int ...
5
votes
3answers
101 views
Convert void** pointer to equivalent Java type
I'm loading a C DLL from a program written in Java.
I want to be able to call one of the methods from the DLL with this declaration :
dll_function(const char* foo1, const char* foo2, const char* ...
0
votes
3answers
51 views
null pointer error array shortening method
I have the following code that is supposed to shorten an array by copying the elements to a new array and skiping every other one. I keep geting a null pointer exception error however.
public void ...
0
votes
1answer
50 views
I have a actionListener on a Panel for a button, getting null pointer
I have looked and looked and tested various methods, but this panel (which is called via another panel component) will not see that actionListener has been set. I am working in Netbeans 7.0 .
HEre is ...
0
votes
5answers
79 views
Create 2D array of Lists in Java
I'm trying to create a 2D array of lists for a Sudoku. Essentially 81 lists each containing possible solutions to that box in the Sudoku grid. I've tried multiple declarations so far, but whenever I ...
0
votes
1answer
98 views
Why I am losing the data that I have stored when I change the class in java
I have code a simple mailing system. The system consists of four classes:
List item
User
Users (main class)
Email Group
My question would be about upper three classes. In my code will start with ...
0
votes
0answers
48 views
junrar gets error null point when extract file rar on android
I have a snippet of code to extract .rar files using the lib junrar but I have always this error of null pointer on a.getMainHeader().print(), getMainHeader is always null.
Logs:
04-06 15:36:27.549: ...
-5
votes
1answer
40 views
java pointing a an object [closed]
Hi I have some problem with my java coding. I cannot figure out hot to point the an object.
the code looks like this.
I have two classes. User and Users.
Users class, which manages a user list as ...
3
votes
1answer
43 views
Accessing data stored in a memory location in java
I'm looking for a way to read data from a pre-written memory location. Is there a way to do this in java, on a computer that runs on windows?
0
votes
3answers
33 views
java Access a window/Jframe by window name/title
I have an array of Strings and i want to print the Strings in Jframes. I use a for to call another class wich will create a Jframe with a Jpanel. It goes something like this:
for(int ...
-2
votes
1answer
91 views
Sorting port from C/C++ to Java [closed]
I have the following C++ function that I need to port to Java:
std::sort(tree_edges, tree_edges+size-1, rcmp_mst_edge);
Where tree_edges is an array of a struct named tree_edges dynamically ...
0
votes
1answer
90 views
Convert std::max to Java
I have the current line in C/C++ code:
double ma = *std::max_element(Dists[a], Dists[a] + size);
Dists[a] is a double integer array of size size
int Dists[size][size];
I'm looking for an ...
1
vote
3answers
82 views
Implementing pointers and arrays ported to Java
I am porting some C++ code over to Java that uses some heavy pointer arithmetic.
My problem is the following:
There is a structure built as such that I have implemented as a class:
In the original ...
-2
votes
5answers
58 views
management of the objects
I have a doubt with the management of the objects using java or c++.
The case is, in c++, when you want to create a dynamic object, one that survive more than the block scope on where it is created, ...
4
votes
5answers
182 views
If I have 2 reference types, with the same value, does that mean only 1 object in memory
I'm new to Java and have read a conflicting statement to what I believe. Please consider the following code.
String str1 = "dave";
String str2 = "dave";
Both str1 and str2, although unique ...
1
vote
2answers
79 views
Raw memory access Java/Python
Memory-mapped hardware
On some computing architectures, pointers can be used to directly
manipulate memory or memory-mapped devices.
Assigning addresses to pointers is an invaluable ...
0
votes
2answers
42 views
Java object references issue
I think I'm not understanding properly the way java works with the objects references. Here an example of the issue where I have realized something was not working as I thought:
public void ...
0
votes
1answer
43 views
Java - changing pointers changing values?
I have an array in Java that is filled with data.
What I want to know is, if I do something like this:
int[] array = new int[2];
array[0] = 0;
array[1] = 1;
//other statements...
array[1] = ...
1
vote
3answers
70 views
Java access variables in arguments [duplicate]
I would like to be able to access a variable passed to my method. I know C might have has some kind of way to pass the address of something as an argument, then refer to that as a pointer and be able ...
-1
votes
5answers
140 views
c++ “new” keyword comparision to java [closed]
first of all i hope this isnt a dublicate. Im am a java programmer and changing to c++ now.
In java you can do like this
Object obj = new Object();
and to my understanding you can the same thing ...
-6
votes
3answers
107 views
smarter way of declaring array [closed]
I've been doing programming from quite a time but, still i'm not sure what is the smarter way to declare array.
Since, array size have to be declared first and we can't declare it dynamically.
1) ...
0
votes
0answers
65 views
android app development, ontouch, differentiating between multiple touches
I am implementing an app where i need to be able to identify multiple gestures.
i.e. When the user swipes right do A, when user swipes left do B, When user swipes left and right at the same time do C
...
-2
votes
1answer
119 views
java.lang.nullpointerexception [closed]
I have this problem with my code. Its called java.lang.nullpointerexception. and I cant seem to fix it. please help me take a look at it. Thank you. I didnt include the class name and import. class ...
1
vote
5answers
94 views
Getting NullPointerException with equals
im having trouble with null pointer errors in java, im trying to make a breakout game and i know what the problem is its this.
GObject collider = getElementAt( ballX, ballspeed);
...
0
votes
0answers
53 views
Assigning objects to variables in java round 2
ok im feeling a bit stiup now i just said this and now im getting a java.lang.NullPointerException error when i run my game and i cant work out why, i think its got something do to with the if ...
1
vote
3answers
76 views
Creating pointers out of HashMap objects in an object array
This is sort of an follow up to the first post I made, lets say I got two classes:
public class Carinfo {
private String carname;
//The Carinfo[] value is set when making a new car
//so ...
3
votes
3answers
131 views
Java Vs. C++ / C Tree implementations, what goes on under the hood
So I've been reviewing my data structures and I've never understood how the java implementation of things with pointers ends up actually working when compared to languages which have pointers.
Trees ...
1
vote
6answers
62 views
Using pointers as parameter in method call in Java
I have the following problem:
When using a pointer as parameter in a method call I get the "error: identifier expected" error.
This is my code:
class Data {
Person a = new Person("John");
...
0
votes
1answer
204 views
Porting C# Levenshtein Distance to Java [closed]
I am developing a spell checker application from an existing one,
can any one help me changing this part of code, i can't port pointers or stackalloc to Java because no equivalent exists.
A java ...
0
votes
1answer
111 views
How to convert a passed c++ long pointer to java Pointer or array
I have a long pointer that has been passed from c++ to java that refers to an image data, now i want to retrieve the array from this pointer in java ,how can i do this
what i have is long ptr in java
...
0
votes
2answers
67 views
Pointers in JAVA. Possible?
I have found a situation where I need a pointer like C++ but in JAVA. I'm going to explain the exactly situation so someone can help me:
I'm developing a videogame. In it, there are some chest which ...
-2
votes
5answers
139 views
Equivalent to C++ pointers in Java? [closed]
Java doesn't support pointers; are there any alternatives?
Note that I'm not referring to function pointers, but to pointers!
0
votes
7answers
133 views
Pointer Logic in Java
I need to find a way to directly modify the private members of a class in Java through a getter function. I know I can do this in C++ using pointers like this;
class FooBar
{
private:
Foo ...
-5
votes
2answers
160 views
translate Java code to C [closed]
I am new in C and apparently I've got some problems with understanding all the memory and pointer things.
So I have the following Java code:
public class Question_10
{
public static void ...
-2
votes
3answers
73 views
Java string[] to string[]
I'm getting java.lang.NullPointerException, but I don't know why.
private String[] fileInfo;
public void createPartControl(Composite parent){
...
setFileInfo( "MyFile.log" );
}
private void ...
0
votes
1answer
65 views
Java is acting like I've got pointers. Why?
I'm building an application using java.swing. I've got a main panel, a grid panel (which displays squares), and a details panel (which brings up the details on each square and lets you edit them). The ...
0
votes
1answer
80 views
Java Servlets - Null Pointer Exception
I have the following code in a servlet:
try
{
EntityManagerFactory emFactory = Persistence.createEntityManagerFactory("Flights_AssignmentPU");
EntityManager em = ...
-1
votes
2answers
58 views
Pointer with public array
Here is the thing- my Main method only calls InitGui. Inside the whole class (basically the whole file, i have the InitGui method and a few public static gui objects. One of the objects is actuall an ...
0
votes
6answers
97 views
JAVA: pointers equivalent
I know pointers don't exist the way they do in C, but I was wondering if something like this would be possible:
I have 5 global variables, r1 r2 r3 r4 r5, each initially initialized to null
I ...

