Page 2 of 2 FirstFirst 12
Results 41 to 56 of 56

Thread: C++ Is A Dying Language?

  1. #41
    type Woss is new Grumpy; wossname's Avatar
    Join Date
    Aug 2002
    Location
    #!/bin/bash
    Posts
    5,682

    Re: C++ Is A Dying Language?

    C++ "The discerning programmer's 200lb hydraulic tungsten toothpick"
    I don't live here any more.

  2. #42
    Frenzied Member aewarnick's Avatar
    Join Date
    Dec 2002
    Posts
    1,037

    Re: C++ Is A Dying Language?

    The great thing about C++ and many other low level languages is that, although out of the box, it's slow to code, but you can and should build up a code base of reusable code that makes coding lots faster.

    Rapid Application Development tools such as Visual C++ are nice but they're not necessary. I don't use a GUI when building my programs. I've developed a system where my controls are automatically laid out easily according to another controls position.

    Besides, you should be spending most of your time on the MEAT of your code, not the visual appearance. A good program is not good because it looks good; it's good because it runs well.

  3. #43
    type Woss is new Grumpy; wossname's Avatar
    Join Date
    Aug 2002
    Location
    #!/bin/bash
    Posts
    5,682

    Re: C++ Is A Dying Language?

    I agree. I think IDE's encourage code bloat and poor quality. The only time I use an IDE now is when I'm coding C# in Windows, it would be a nightmare without it. At all other times I use text editors (vim or notepad) or occasionally UltraEdit (under duress).
    I don't live here any more.

  4. #44
    Hyperactive Member singularis's Avatar
    Join Date
    Nov 2006
    Location
    Over There!
    Posts
    372

    Re: C++ Is A Dying Language?

    If you have the flexibility of C++ you can slowly build up anything (out of toothpicks)
    If what I said was helpful, give me rep!

    My Complete Games: -- 2D Zone (Space Shooter game) || _2D Zone 2_ || Ninja Blob (2D platformer) || Dren (Co-op up to 4 player base defence game)

    My Projects: -- The Dread Engine (2D VB game Engine) || A* Path Finding


    An excellent site for learning DirectX7, 8 & 9 (for VB6, C# & VB.net) would be: directx4vb.vbgamer.com --- For my projects and games see: pieper.freehostia.com

  5. #45
    Frenzied Member aewarnick's Avatar
    Join Date
    Dec 2002
    Posts
    1,037

    Re: C++ Is A Dying Language?

    C++ can become anything you want it to be. It can become a high level language that is almost as easy and fast to use as C# .net is and it can be used to program small devices such as computer chips.

  6. #46
    Member
    Join Date
    Mar 2006
    Posts
    43

    Re: C++ Is A Dying Language?

    I've been using C++ for about 4 years now, which has given me enough time to become proficient with the language. I've also been using VB, Ruby, Python, Java, and C#. Overall, I think C++ was the best language to complete a large task. However, if you only need a small GUI application, why would you waste your time coding it all out in C++, when you can just drag/drop in VB or C#?

    C++ will probably never die.
    I can help with C++, Java (some), vB, Ruby/RoR, Python, JavaScript, and TorqueScript

  7. #47
    type Woss is new Grumpy; wossname's Avatar
    Join Date
    Aug 2002
    Location
    #!/bin/bash
    Posts
    5,682

    Re: C++ Is A Dying Language?

    I can't help thinking the ultimate compromise is C. It does lack the higher level power of C++ but it does have compactness on its side. It doesn't have ASM's absolute speed, but it does have standardised portability.

    If my life depended on it I'd code in C. Because its solid as a rock.
    I don't live here any more.

  8. #48
    Kitten CornedBee's Avatar
    Join Date
    Aug 2001
    Location
    In a microchip!
    Posts
    11,594

    Re: C++ Is A Dying Language?

    Compactness in what sense?
    All the buzzt
    CornedBee

    "Writing specifications is like writing a novel. Writing code is like writing poetry."
    - Anonymous, published by Raymond Chen

    Don't PM me with your problems, I scan most of the forums daily. If you do PM me, I will not answer your question.

  9. #49
    type Woss is new Grumpy; wossname's Avatar
    Join Date
    Aug 2002
    Location
    #!/bin/bash
    Posts
    5,682

    Re: C++ Is A Dying Language?

    It compiles to a small executable on most platforms. Given that its used judiciously.
    I don't live here any more.

  10. #50
    Member
    Join Date
    Mar 2006
    Posts
    43

    Re: C++ Is A Dying Language?

    Yeah, it does compile to small files, at least for me, on Windows XP, Vista, as well as Ubuntu/Gentoo Linux, and Minix 3. Never tried on a Mac.
    I can help with C++, Java (some), vB, Ruby/RoR, Python, JavaScript, and TorqueScript

  11. #51
    Lively Member
    Join Date
    Dec 2005
    Posts
    68

    Re: C++ Is A Dying Language?

    Quote Originally Posted by CornedBee
    Nah, C++'s main problem is a lack of easily available libraries.
    Quote Originally Posted by CornedBee
    you'll find that there are libraries to do most things in C++ readily available.
    Teehee. nuff said.

  12. #52
    Kitten CornedBee's Avatar
    Join Date
    Aug 2001
    Location
    In a microchip!
    Posts
    11,594

    Re: C++ Is A Dying Language?

    Readily available is not the same as easily available. Anyone who knows a bit will find libraries for just about anything in C++. They'll still have to install them, though.
    All the buzzt
    CornedBee

    "Writing specifications is like writing a novel. Writing code is like writing poetry."
    - Anonymous, published by Raymond Chen

    Don't PM me with your problems, I scan most of the forums daily. If you do PM me, I will not answer your question.

  13. #53
    Lively Member
    Join Date
    Dec 2005
    Posts
    68

    Re: C++ Is A Dying Language?

    "easily 1 : in an easy manner : without difficulty"
    "readily b : without much difficulty"

    Taken from my old pal Webster.

    Besides, availability has nothing to do with using a package/library, just how easy it is to attain/find.

    That being said I don't think C++ is a dying language. It is still the main language used in just about any decently sized program available. You just can't pick it up in a week like BASIC.

  14. #54
    Hyperactive Member singularis's Avatar
    Join Date
    Nov 2006
    Location
    Over There!
    Posts
    372

    Re: C++ Is A Dying Language?

    Ok, Who thinks C is a dying language
    If what I said was helpful, give me rep!

    My Complete Games: -- 2D Zone (Space Shooter game) || _2D Zone 2_ || Ninja Blob (2D platformer) || Dren (Co-op up to 4 player base defence game)

    My Projects: -- The Dread Engine (2D VB game Engine) || A* Path Finding


    An excellent site for learning DirectX7, 8 & 9 (for VB6, C# & VB.net) would be: directx4vb.vbgamer.com --- For my projects and games see: pieper.freehostia.com

  15. #55

    Re: C++ Is A Dying Language?

    People who are dependant on BASIC languages?

  16. #56
    PowerPoster sunburnt's Avatar
    Join Date
    Feb 2001
    Location
    Boulder, Colorado
    Posts
    1,403

    Re: C++ Is A Dying Language?

    I would say that this is pretty much a dying thread. Let's lock it and let it die
    Every passing hour brings the Solar System forty-three thousand miles closer to Globular Cluster M13 in Hercules -- and still there are some misfits who insist that there is no such thing as progress.

Page 2 of 2 FirstFirst 12

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width