Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. Guy1978

    How to burn an image greater than 700MB to a CD

    I have an image (.iso) that is about 1.2 GB. Is there a program that will automatically split the image as it tries to copy it onto more than one CD? I know Nero won't do it, because when I try to copy the image to a CD, it tells me that the media will only hold 700MB. Thanks
  2. Guy1978

    Basic Question on Return values and expressions

    Diancecht: ok, thanks for your explanation of the first point. But my question builds exactly on that. If the primitive member variables are automatically initialized at the physical stage, then why must a no-arg constructor be used at the point of object creation, if you don't specify and...
  3. Guy1978

    Basic Question on Return values and expressions

    Ok Diancecht, I think I got it. Upon reading some sections of that book in the link you sent me, I was just confused about one other thing. In chapter 4, in the section MEMBER INITIALIZATION, the author talks about how "each primitive data member of a class is guaranteed to get an initial...
  4. Guy1978

    Basic Question on Return values and expressions

    I'm learning Java on my own from a book, and there are times when things are not well explained. I'm trying to understand the concept of return values. When you have an expression like: int x = SomeFunction(15); static int SomeFunction(int number) { .... } ...then SomeFunction returns a...
  5. Guy1978

    having problems reading chars into array

    I have the following code that reads in an array of characters and then prints them out in alphabetical order (without sorting the array). The "tio.*" is a package that contains the readChar method. I've used it before without problems. The problem with this code seems to be with the writing...
  6. Guy1978

    Why variable declaration fails in IF statemenet

    Hmmmm...what both of you said is interesting. I thought that the reference variable f would only be invisible outside the IF statement (and hence create a scope problem) if it were declared within braces. In fact, when I did as Dian suggested, the compiler no longer complained of ".class...
  7. Guy1978

    Why variable declaration fails in IF statemenet

    As we all know, in Java you can combine an array declaration with array initialization, as follows: n1 = 5; double[] g = new double[n1 + 1]; But why is it that such a statement will not work if declared within the bounds of an IF statement? I had never heard before that variables cannot be...

Part and Inventory Search

Back
Top