| Thread | Last Post | Replies |
|
| Spelling Checker Program | 08 Dec 2004 13:33 GMT | 1 |
The following program compares 2 files with words. If the word in one file is present in the other file the program outputs spelling correct and the name of the word. Here is the code
|
| comparing stacks | 08 Dec 2004 12:02 GMT | 6 |
how would i compare objects stored in two stacks? for example the objects are stored in the following manner: stack 1: object[1]
|
| intializing object arrays | 08 Dec 2004 06:18 GMT | 3 |
i have this code that is not working but I do not know what it is. here is the code; // Create space for stock objects. Share[] stock = new Share[20];
|
| How do I use this driver class? | 08 Dec 2004 01:38 GMT | 2 |
How can I create an instance of the Ferry class with values for String nameOfFerry, int numOfLanes, float lengthOfDeck, int lengthOfJourney being set, through the main(String[] args) method of the InstantiateFerry class? public class InstantiateFerry
|
| invalid path help.... | 08 Dec 2004 01:02 GMT | 1 |
hi, I just downloaded jcreator light.. and I cant seem to compile anything without it saying... --------------------Configuration: <Default>-------------------- Error : Invalid path, \bin\javac.exe -classpath "D:" -d D: D:\e23.java"
|
| help with asterisks | 08 Dec 2004 00:55 GMT | 1 |
This assignment is really to learn about inheritance. I have a main that uses this program via inheritance, but I can't figure out how to make it print the asterisks in the form of a triangle instead of a square. Can someone help me?
|
| Change an array to a vector.. help | 07 Dec 2004 21:43 GMT | 26 |
I'm new to java and I'm trying to do a project which involves changing storage for a group of models from an array to a vector and add a GUI. At the moment I'm trying to get the array to a vector - but obviously the 6/7 methods that were given were written using the array and now ...
|
| How much memory is created on the heap if 'a' is defined? | 07 Dec 2004 21:10 GMT | 2 |
class A; A a; How much memory is created on the heap if 'a' is defined? Thanks,
|
| big O? | 07 Dec 2004 20:42 GMT | 3 |
how do you determine the 'big O' for a function?
|
| scope of a variable | 07 Dec 2004 20:31 GMT | 7 |
I want to know why the variable 'i' is not recognized within the 'try' function? The code is below: for(int i =1; i<stock.length;i++) {
|
| Problem with sockets | 07 Dec 2004 19:26 GMT | 3 |
i'm programing a client/server aplication that does the following 1. The client pass a file name to the server. 2. The server reads that file and sends to the client the info. I execute the server and it waits for petitions. Then, i execute the client
|
| rerurning a boolean value | 07 Dec 2004 19:21 GMT | 8 |
Hello, i want to make a problem to check if 2 numbers can be divided by each other with a method How can i process theis if i even cant return a boolean values in an int? public class e32 {
|
| Getting the int remainder | 07 Dec 2004 18:44 GMT | 3 |
How do I get the integer remainder from a double? i.e. dVariable = 13.4545; I want to return the integer part (13)
|
| strings patterns and the like | 07 Dec 2004 14:21 GMT | 20 |
I have been playing with the string tokenizer and the string split method and have had some success. However neither of them do exactly what I want. What I need is to be able to search a string and extract any sequence of
|
| HowTo replace StringBufferInputStream | 07 Dec 2004 13:52 GMT | 1 |
I've got the following code and I want to replace the deprecated interface StringBufferInputStream. String strXml = ""; // get data into strXml
|