Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. The Lounge
  3. Does C++ finally have enough features to make memory leaks a ... memory?

Does C++ finally have enough features to make memory leaks a ... memory?

Scheduled Pinned Locked Moved The Lounge
csharpc++performancehelpquestion
31 Posts 9 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • J jschell

    CodeWraith wrote:

    I have also seen an entire team of Java guys sitting around a server that needed a reset every day because their opus hogged memory.

    I was told by a number of unix admins that when C/C++ servers were the norm that was the standard operating procedure for any large enterprise. It was something that was planned for when putting the process together for a new server application. And it wasn't just for memory. File descriptors and sockets also needed to be cleaned up.

    L Offline
    L Offline
    Lost User
    wrote on last edited by
    #22

    I think to remember for the first windows servers that this was a standard procedure (not daily, but about weekely). This not because of the applications/services but because windows was the problem at that time.

    It does not solve my Problem, but it answers my question

    1 Reply Last reply
    0
    • S swampwiz

      :-D I should say that I had "early retired" back when auto_ptr was the new k3wl thing. I understand that after that, there have been some other features added that addressed issues that auto_ptr did not completely fix. I wonder if the state of the language is such that there are no more issues with memory leaks - which would indicate to me that no one need bother with calling delete anymore, basically making C++ like its managed cousin C#. Or am I missing something?

      L Offline
      L Offline
      Lost User
      wrote on last edited by
      #23

      To be honest, I like the "feature" that I as the programmer is responsible for each and every resource and therefore need to pay attention to it. This is a clear straight forward situation and in case I'm not able to take care about the resource management then I better do not program. Vs. c#, where there are hidden traps ... I need to take care e.g. wether sometng is IDisponable or not and so on. Case by case, not straight forward. Only my 2 cents.

      It does not solve my Problem, but it answers my question

      1 Reply Last reply
      0
      • J jschell

        Munchies_Matt wrote:

        Of course they can be, they are the same language,

        They are no longer the same language. Haven't been the same for quite some time. And actually the first ANSI C++ spec made at least one change that made it different from C.

        T Offline
        T Offline
        TheGreatAndPowerfulOz
        wrote on last edited by
        #24

        jschell wrote:

        made at least one change that made it different from C.

        Which was?

        #SupportHeForShe Government can give you nothing but what it takes from somebody else. A government big enough to give you everything you want is big enough to take everything you've got, including your freedom.-Ezra Taft Benson You must accept 1 of 2 basic premises: Either we are alone in the universe or we are not alone. Either way, the implications are staggering!-Wernher von Braun

        E J 2 Replies Last reply
        0
        • J jschell

          Super Lloyd wrote:

          For one thing it has little to do with "object lifecyle"

          Perhaps we have a different definition of that term. I have seen problems in both Java and C# where the developers failed to properly account for how an object 'ended'. They had no problem with when the object 'started' but they never considered how to specifically control how it 'ended'. Matter of fact I suspect that I have seen code that might have that sort of problem just in the past week.

          Super Lloyd wrote:

          FYI, unless you do interop, which is less and less common those days, the only reason for leak in C# is if your referenced by static variable or (though is the same thing in disguise) static event. Or maybe too many live threads which don't die (and all the memory they collect), could typically come from wait handle hanging forever...

          Probably been at least 15 years since I worked in a system where at least some threads did not die. Often quite a few of them. At least in Java the server frameworks build that in extensively. Most problems I have seen have been because the developers did not even seem to be aware that they were working in a threaded environment. Java and C# both have complex thread pool support and the concept has existed since before C# existed. Might have existed before Java but I wasn't introduced to it until after I first used Java. For context I started with Java 1.1.4 (well before 1.4.)

          T Offline
          T Offline
          TheGreatAndPowerfulOz
          wrote on last edited by
          #25

          ThreadPools have been around since long before java's inventor was a gleam in his grandfather's eye.

          #SupportHeForShe Government can give you nothing but what it takes from somebody else. A government big enough to give you everything you want is big enough to take everything you've got, including your freedom.-Ezra Taft Benson You must accept 1 of 2 basic premises: Either we are alone in the universe or we are not alone. Either way, the implications are staggering!-Wernher von Braun

          1 Reply Last reply
          0
          • J jschell

            CodeWraith wrote:

            I have also seen an entire team of Java guys sitting around a server that needed a reset every day because their opus hogged memory.

            I was told by a number of unix admins that when C/C++ servers were the norm that was the standard operating procedure for any large enterprise. It was something that was planned for when putting the process together for a new server application. And it wasn't just for memory. File descriptors and sockets also needed to be cleaned up.

            T Offline
            T Offline
            TheGreatAndPowerfulOz
            wrote on last edited by
            #26

            That's SOP for any data center. Mostly because of the OS, not the applications.

            #SupportHeForShe Government can give you nothing but what it takes from somebody else. A government big enough to give you everything you want is big enough to take everything you've got, including your freedom.-Ezra Taft Benson You must accept 1 of 2 basic premises: Either we are alone in the universe or we are not alone. Either way, the implications are staggering!-Wernher von Braun

            1 Reply Last reply
            0
            • J jschell

              Munchies_Matt wrote:

              Of course they can be, they are the same language,

              They are no longer the same language. Haven't been the same for quite some time. And actually the first ANSI C++ spec made at least one change that made it different from C.

              M Offline
              M Offline
              Munchies_Matt
              wrote on last edited by
              #27

              In respect of the errors you can make not freeing memory they are, which was the part of the language we were discussing.

              1 Reply Last reply
              0
              • T TheGreatAndPowerfulOz

                jschell wrote:

                made at least one change that made it different from C.

                Which was?

                #SupportHeForShe Government can give you nothing but what it takes from somebody else. A government big enough to give you everything you want is big enough to take everything you've got, including your freedom.-Ezra Taft Benson You must accept 1 of 2 basic premises: Either we are alone in the universe or we are not alone. Either way, the implications are staggering!-Wernher von Braun

                E Offline
                E Offline
                ExcellentOrg
                wrote on last edited by
                #28

                added plus plus to name to start with

                T 1 Reply Last reply
                0
                • S swampwiz

                  :-D I should say that I had "early retired" back when auto_ptr was the new k3wl thing. I understand that after that, there have been some other features added that addressed issues that auto_ptr did not completely fix. I wonder if the state of the language is such that there are no more issues with memory leaks - which would indicate to me that no one need bother with calling delete anymore, basically making C++ like its managed cousin C#. Or am I missing something?

                  L Offline
                  L Offline
                  Lost User
                  wrote on last edited by
                  #29

                  Yep, combo of std::unique_ptr, std::shared_ptr and std::weak_ptr are very good. I much prefer to use these than the IDispose pattern but I spend 80% time doing c++ and 20% doing c#

                  1 Reply Last reply
                  0
                  • E ExcellentOrg

                    added plus plus to name to start with

                    T Offline
                    T Offline
                    TheGreatAndPowerfulOz
                    wrote on last edited by
                    #30

                    ha ha not

                    #SupportHeForShe Government can give you nothing but what it takes from somebody else. A government big enough to give you everything you want is big enough to take everything you've got, including your freedom.-Ezra Taft Benson You must accept 1 of 2 basic premises: Either we are alone in the universe or we are not alone. Either way, the implications are staggering!-Wernher von Braun

                    1 Reply Last reply
                    0
                    • T TheGreatAndPowerfulOz

                      jschell wrote:

                      made at least one change that made it different from C.

                      Which was?

                      #SupportHeForShe Government can give you nothing but what it takes from somebody else. A government big enough to give you everything you want is big enough to take everything you've got, including your freedom.-Ezra Taft Benson You must accept 1 of 2 basic premises: Either we are alone in the universe or we are not alone. Either way, the implications are staggering!-Wernher von Braun

                      J Offline
                      J Offline
                      jschell
                      wrote on last edited by
                      #31

                      How global variables were handled - the scope of those.

                      1 Reply Last reply
                      0
                      Reply
                      • Reply as topic
                      Log in to reply
                      • Oldest to Newest
                      • Newest to Oldest
                      • Most Votes


                      • Login

                      • Don't have an account? Register

                      • Login or register to search.
                      • First post
                        Last post
                      0
                      • Categories
                      • Recent
                      • Tags
                      • Popular
                      • World
                      • Users
                      • Groups