Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #11.1K
Ranked #3K
~3K People Reached
Favorite Forums
Favorite Tags

12 Posted Topics

Member Avatar for eddy556

String.equal() return type is boolean example: String a = "not Hello" if(a.equal("Hello")){ will do whatever here if result is true} or if(!a.equal("Hello")){ will do whatever here if result is true} and so on..

Member Avatar for stultuske
0
783
Member Avatar for rje7

when you implement an interface, you'll have to implement all methods in your class. like if interface A has methods A1 and A2, your class should implement both methods even if you don't use any of them. Abstract classes, you may override the methods that you want to customize for …

Member Avatar for masijade
0
132
Member Avatar for supra

I used mySql before along with JSP and Java. also, I tried Oracle with Java, I would prefer MySql thou. anyways, anyone would work fine.

Member Avatar for martin5211
0
184
Member Avatar for the b
Member Avatar for COKEDUDE

try using Integer instead of int, and btw, I think you don't need to use .toString() method.

Member Avatar for javaAddict
0
208
Member Avatar for shroomiin

ok, first, the get and set methods (also called Accessors and Mutators) are used to access attributes of an object and change them. like this: [CODE] class x{ int age; String name; public void setName(String n){ name = n; } public String getName(){ return name; } . . Similarly goes …

Member Avatar for striker3344
0
158
Member Avatar for hallinan

you are exceeding the array's bounds. exactly, one can't figure out what causes the error, because the manipulation is done by your code that comes before these blocks. check it again, either you go beyond index 8 or below index 0, good luck.

Member Avatar for hallinan
0
522
Member Avatar for a_iyer20

i'll give you these hints, create a boolean variable in class B, make it private and use accessors/mutators to access and change that variable... now you need to learn how to use accessors and mutators> GooD Luck

Member Avatar for a_iyer20
0
119
Member Avatar for alejalv

look at the three points given for the class Point, they tell you what each method should do, and so you have to figure out the code for each method, taking in mind the class Pair. that goes also with the class LabeledPoint, the comment next to each line tells …

Member Avatar for VernonDozier
0
188
Member Avatar for ndrux

if you still are using the code you posted at the first post, then the problem can be solved by simply moving a line of your code, and adding one more. the line where you do sum should be moved, and u should reset the value of price.

Member Avatar for ndrux
0
144
Member Avatar for brightstar
Member Avatar for rickster11

class level variables can be accessed by all methods. [COLOR="Green"]OutputFile summaryReport;[/COLOR] try making this a class-level variable. [COLOR="Green"] summaryReport = new OutputFile ("H:\\MaxSync\\School\\SLCC\\CIS 1030\\Spacely Sprockets\\summaryReport.txt");[/COLOR] umm.. i think u can put this in the main method,, not sure thou!!

Member Avatar for Ezzaral
0
155

The End.