Search:

Type: Posts; User: xagiber

Search: Search took 0.00 seconds.

  1. Replies
    2
    Views
    1,242

    EAccess Violation Error using Vectors

    Hi,

    Im working on a GUI project using Borland Builder 5 and I have a container class that is of type vector which has to hold objects of another class.

    The objects to be stored are of Class...
  2. Replies
    2
    Views
    1,173

    removing objects from std::vector

    Hi,
    i have encountered a problem, i would like to remove element i from my list, which is of type vector.

    I have the following code, within the declaration of my list (vector):

    //create an...
  3. Replies
    4
    Views
    5,953

    dynamic_cast vs static_cast

    What is really the difference between dynamic and static cast?

    Code ex:

    float number=43.54;
    cout << static_cast<int>(number) << endl;
    cout << dynamic_cast<int>(number) << endl;

    The...
  4. Replies
    10
    Views
    1,552

    THAT was my problem! thanks a lot!

    THAT was my problem! thanks a lot!
  5. Thread: class output

    by xagiber
    Replies
    2
    Views
    817

    thanks for the answer! now it's back to the...

    thanks for the answer!

    now it's back to the books...........
  6. Thread: class output

    by xagiber
    Replies
    2
    Views
    817

    class output

    is it possible to write objects directly to files (like it is possible in Java) or do you need to write all the objects elements, one by one, to the file?
  7. Replies
    10
    Views
    1,552

    if i don't use the brackets i get the following...

    if i don't use the brackets i get the following linker error:
    [Linker Error] Unresolved external 'TQueue<int>::~TQueue<int>()' referenced from C:\PROGRAMMING\C++\EXERCISE V\DRIVER.OBJ

    my...
  8. Replies
    10
    Views
    1,552

    user defined template

    hello, i am trying to build a Queue, with the use of templates, so that it is possible to create 'int', 'string' queues and so on...

    i have been given a class definition for my template queue...
  9. Replies
    3
    Views
    1,490

    inheritance & virtual functions

    Hello,

    I have an abstract base class called Node, which has got two derived classes, IntNode and StringNode.

    class Node{ //abstract class
    private:
    Node* lnk;
    public:
    Node();
    ...
  10. Replies
    1
    Views
    1,035

    memory leakage?

    i have a question regarding memory leakage.

    i have a attribute defined in the class like this:

    MyClass* myObject;

    function1 is invoked when the application starts, and allocates memory for...
  11. Thread: gui borland

    by xagiber
    Replies
    0
    Views
    908

    gui borland

    i am looking for a good book/web site that covers GUI programming using Borland Builder 5.

    has anyone out there got any recommendations?

    thanks.
Results 1 to 11 of 11