-
NullPointerException
sorry to bother u guys again but....
I have the following code
public static void sortId() {
int passCount;
int placeCount;
int minIndex;
Video temp = new Video();
for(passCount = 0; passCount < videos.length ; passCount++){
minIndex = passCount;
for(placeCount = passCount + 1; placeCount < videos.length; placeCount++){
if((videos[placeCount].getVideoId()) < (videos[minIndex].getVideoId())){
minIndex = placeCount;
System.out.println(temp);
}
temp = videos[passCount];
System.out.println(temp);
videos[passCount] = videos[minIndex];
videos[minIndex] = temp;
}
}
}
videos is an array
but somehow when I run this method...it gives me NullPointerException...can someone help me plz....
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Development Centers
-- Android Development Center
-- Cloud Development Project Center
-- HTML5 Development Center
-- Windows Mobile Development Center
|