Search:

Type: Posts; User: xbuilder

Search: Search took 0.01 seconds.

  1. Replies
    10
    Views
    1,381

    A pointer is a variable that can be given memory...

    A pointer is a variable that can be given memory locations as values. They're used implicitly in Java and explicitly in C/C++.

    For example, in Java,
    String s = new String() creates a new String...
  2. Replies
    2
    Views
    779

    Would you understand a simpler example? How...

    Would you understand a simpler example?

    How about:

    int main()
    {
    A a1(10);
    return 0;
    }
Results 1 to 2 of 2