Tagged Questions
The object-lifetime tag has no wiki summary.
115
votes
2answers
2k views
Is this object-lifetime-extending-closure a C# compiler bug?
I was answering a question about the possibility of closures (legitimately) extending object-lifetimes when I ran into some extremely curious code-gen on the part of the C# compiler (4.0 if that ...
20
votes
1answer
572 views
Object destruction in C++
When exactly are objects destroyed in C++, and what does that mean? Do I have to destroy them manually, since there is no Garbage Collector? How do exceptions come into play?
(Note: This is meant to ...
16
votes
6answers
2k views
What is the best way to do nested TRY AND FINALLY statement in Delphi
Hi What is the best way to do nested try & finally statements in delphi?
var cds1 : TClientDataSet;
cds2 : TClientDataSet;
cds3 : TClientDataSet;
cds4 : TClientDataSet;
begin
...
13
votes
9answers
1k views
A Question On Smart Pointers and Their Inevitable Indeterminism
I've been extensively using smart pointers (boost::shared_ptr to be exact) in my projects for the last two years. I understand and appreciate their benefits and I generally like them a lot. But the ...
12
votes
4answers
3k views
AppDomain and MarshalByRefObject life time : how to avoid RemotingException?
When a MarshalByRef object is passed from an AppDomain (1) to another (2), if you wait 6 mins before calling a method on it in the second AppDomain (2) you will get a RemotingException :
...
11
votes
6answers
452 views
Is it wrong to use braces for variable scope purposes?
I sometimes use braces to isolate a block of code to avoid using by mistake a variable later. For example, when I put several SqlCommands in the same method, I frequently copy-paste blocks of code, ...
9
votes
1answer
154 views
Lifetime of lambda objects in relation to function pointer conversion
Following this answer I'm now wondering what the rules are for the lifetime of lambdas and how the relate to the lifetime of function pointers which are created by automatic conversion. There are ...
8
votes
2answers
159 views
Prevent temporary from extending its lifetime?
This may be impossible, but I was wondering if it was possible to keep a temporary from ever lasting past its original expression. I have a chain of objects which point to parent objects, and a member ...
8
votes
6answers
328 views
checking invariants in C++
Are there any established patterns for checking class invariants in C++?
Ideally, the invariants would be automatically checked at the beginning and at the end of each public member function. As far ...
8
votes
1answer
174 views
Is there any research on (or better use of) of RAII in GC languages?
Note: Object Lifetime RAII not using/with block scope RAII
It seems like its possible using an extra gc category, short lived objects(check gc category somewhat frequently), long lived objects(check ...
8
votes
2answers
840 views
What is the lifetime and validity of C++ iterators?
I'm planning to implement a list of Things in C++ where elements might be removed out of order. I don't expect that i'll need any kind of random access (i just need to sweep the list periodically), ...
7
votes
2answers
156 views
c++ Dependency Injection: Object lifetimes?
I'm coming from C# and trying to translate some of my practices into C++. I've used dependency injection in various places throughout my code using raw pointers. Then I decide to replace the raw ...
7
votes
3answers
153 views
What's the point of temporary bound to a member lifetime statement in C++ Standard?
In this question user Happy Mittal quotes section 12.2.5 of C++03 Standard: A temporary bound to a reference member in a constructor’s ctor-initializer (12.6.2) persists until the constructor exits.
...
6
votes
4answers
574 views
C# Thread object lifetime
Suppose I have a code as follows:
int Main()
{
if (true)
{
new Thread(()=>
{
doSomeLengthyOperation();
}).Start();
}
while (true)
{
...
5
votes
3answers
139 views
Lifetime of object is over before destructor is called?
I don't understand this:
3.8/1 "The lifetime of an object of type T ends when: — if T is a class type with a non-trivial destructor (12.4), the destructor call
starts, or — the storage which ...
5
votes
4answers
90 views
NOT the most important const.. but what is this?
This outputs F~ but I was expecting ~F
#include <iostream>
struct Foo {
int _x;
operator const int & () const {return _x;}
~ Foo () {std :: cout << "~";}
};
void foo ...
5
votes
1answer
932 views
Lifetime management with Google Guice
Is there a recommended pattern for shutting down / closing objects created with Guice?
The lifecycle I'm aiming for is:
Prepare a Guice Module
Create an injector
Use the injector through your code ...
5
votes
4answers
683 views
Should this C++ temporary binding to reference member be illegal?
My question (which will follow after this, sorry about the long intro, the question is down there in bold) is originally inspired by Item 23 in Herb Sutters Exceptional C++ where we find something ...
4
votes
2answers
142 views
Safe way in Delphi for a Form to distribute interface objects tied to its lifetime?
I have a Delphi Form that provides the functionality behind an interface object that other parts of the code get references too via a property belonging to the Form. I can't delegate the interface ...
4
votes
2answers
260 views
What is the best object lifetime strategy for Redis in web application
I will plan to use Redis (ServiceStack) as whole database for web application.
I can insert 76000 records in 7.4 seconds.
But using single connection (RedisClient object-life-time is Application),
I ...
4
votes
3answers
147 views
Is this a proper use of a temporary std::string?
std::string getMyString() { return <make a string>; }
...
HANDLE something = OpenSomething(getMyString().c_str(), ...);
I've read Guaranteed lifetime of temporary in C++ and I believe that ...
4
votes
4answers
370 views
The correct way to release variables in Objective-c
I know that in Objective-c there's a very easy way to declare variables like this:
NSArray* myArray;
@property(retain) NSArray* myArray;
@synthesize myArray;
This way you can use self.myArray as ...
4
votes
2answers
471 views
__del__ method being called in python when it is not expected
I am new to python and have been working through the examples in Swaroop CH's "A Byte of Python". I am seeing some behavior with the __del__ method that is puzzling me.
Basically, if I run the ...
3
votes
2answers
75 views
Why is an 'invisible' object not instantly collected?
I just read this article: The Truth About Garbage Collection
In section "A.3.3 Invisible" it is explained how and when an object gets into the invisible state.
In the below code, the object ...
3
votes
2answers
74 views
c++ Object parameters: polymorphism, value semantics, object lifetimes?
As I make the transition from C# to C++ I get a lot of recommendations to use value semantics where possible. It's pretty much guaranteed that if I post a question with a pointer anywhere someone ...
3
votes
1answer
92 views
C++ — where does the system store the returned characters?
#include "stdafx.h"
#include <iostream>
#include <string>
using namespace std;
const char* funA()
{
return "aa"; // where does system to store this temporary variable?
}
// this is ...
3
votes
2answers
271 views
Singelton lifetime within a dll / bundle
If I create a singleton class in the context of a dll or bundle on mac, the singleton class is instantiated once and used by all instances of the dll. I am using a dll as a plug-in for an application. ...
3
votes
1answer
1k views
Android - is onDestroy supposed to destroy the activity, its variables and free up memory
I have a bug in my code that made me think I don't fully understand the Android Lifecycle. Yes, I have read all the docs and looked at the diagrams, but they seem to talk only about when to save data, ...
3
votes
3answers
414 views
.NET: Way to determine if object has any references to it?
Q. Is there a way to find out if an object has any "strong references" to it?
Raymond Chen hinted that a solution might be possible:
You want to know whether the reference
count is zero or ...
3
votes
1answer
356 views
Multiple constructor with Structuremap changing the scope?
To illustrate the problem, here is a simplified version of my setup.
I have a factory like this one :
public interface IFactory{ }
public class Factory : IFactory
{
public Factory()
{
...
3
votes
1answer
573 views
boost signals - How control lifetime of objects sent to subscribers? Smart pointers?
I am using boost::signals2 under Red Hat Enterprise Linux 5.3.
My signal creates an object copy and sends it's pointer to subscribers. This was implemented for thread safety to prevent the worker ...
3
votes
3answers
236 views
What are the advantages of using a concept like IStartable?
Instead of using an interface like this:
public interface IStartable
{
void Start();
void Stop();
}
I usually just make the constructor of an object run the Start() code, and implement ...
2
votes
1answer
49 views
ASP .NET Application Life Cycle + Singleton Instance Life Time
Please considerer the following scenario :
I have created a full-web application by using the ASP .NET MVC 3 framework. Now my application is managed by a web server.
An HTTP request is received on ...
2
votes
1answer
100 views
One object per HttpContext instance
I'm currently writing a project in ASP.NET MVC. I have a web project and DB project which solely works with DB. The layers look like this and they interoperate only with sibling layers.
DB project ...
2
votes
1answer
35 views
WCF and container lifetime
I'm sure this is obvious but I haven't been able to find a very specific clean answer to the lifetime of a container in a IIS 7.5 hosted WCF service.
If the container lives in my service code, it ...
2
votes
4answers
115 views
Moving temporary objects into a vector
#include <iostream>
#include <utility>
#include <vector>
int i = 0;
struct A
{
A() : j( ++i )
{
std::cout<<"constructor "<<j<<std::endl;
}
...
2
votes
2answers
173 views
Can I override Dispose to make an entity class that always calls SaveChanges?
This is a fairly fine point, and I expect the answer is "it's not a hot idea to begin with" - that said, it has a points that I'm interested in regardless, if someone is kind enough to indulge.
Model ...
2
votes
1answer
118 views
Need help understanding how luabind instantiates classes
Let's say I have a class like this:
class A
{
public:
A(){}
~A(){}
};
And expose it to Lua via Luabind like this:
module(luaState)
[
class_<A>("Foo")
...
2
votes
1answer
90 views
BizTalk mapping - Scripting Functoid Object life cycle, when is it initialized and destructed
In a BizTalk map when you call a scripting functiod, is the object (the class you are calling) initialized at the time of the first call and kept in memory for the entire time the transformation is ...
2
votes
3answers
233 views
Warning C4172: Returning a reference to const std::string bound to a local variable. How safe is it?
I was just building one of our projects at work and I see a new function was added:
const std::string& ClassName::MethodName() const
{
return "";
}
The compiler gives a warning:
Warning ...
2
votes
6answers
116 views
C++: How to manage object lifetimes and dependencies?
A concrete problem:
I have a Main application which has objects of type A and type B (among other types).
Object of type B requires A object to be properly constructed (so there is a constructor
...
2
votes
2answers
99 views
What is the life time of a C++ data structure object?
Suppose I have have a Car.h which define a class called Car , and I have implementation Car.cpp which implement my class Car, for example my Car.cpp can be :
struct Helper { ... };
Helper helpers[] = ...
2
votes
1answer
200 views
MEF ExportFactory<T> - How to properly dispose in a long-running application?
Basically, is there an easy way to dispose of the imports that are created by an ExportFactory<T>? The reason I ask is because the exports usually contain a reference to something that is still ...
2
votes
1answer
65 views
Object lifetime related; Does a term/pattern/whatnot exist for the following problem?
I'm trying to write a callback class for my GUI windows.
To (hopefully) achieve that, I'm using delegates.
typedef srutil::delegate2<void,DWORD,DWORD> CallbackMethod;
typedef ...
2
votes
1answer
139 views
MEF and WPF. Lifetime of lazy(of T)?
1st i'm newbie
I import object/Class using lazy()
now my questions are
1) what is the lifetime of my object?
2) how this object disposes?
3) if Disposed manually can MEF later reinitialize it when ...
2
votes
1answer
106 views
How would I give a delegate infinite life the same way as a proxy when doing cross-app-domain development?
Background
I developed a custom plugin architecture using a derivation of the Observer/Event Pattern and bits and pieces of code from the following:
Code Project: Plugin ManagerMicrosoft: ...
2
votes
4answers
104 views
Reference parameter lifetime
Given the following:
class ParamClass {...};
class MyObject {
public:
void myMethod(ParamClass const& param) { _myPrivate = param; }
private:
ParamClass _myPrivate;
}
[...]
MyObject ...
2
votes
2answers
165 views
boost::bind and reference to temp variable
Suppose I have method:
void foo(const std::string& s);
Can I create boost::function:
boost::function<void(const std::string&)> f = boost::bind(foo, temp);
where temp is char* that ...
2
votes
3answers
244 views
Are singletons automatically persisted between requests in ASP.NET MVC?
I have a lookup table (LUT) of thousands integers that I use on a fair amount of requests to compute stuff based on what was fetched from database.
If I simply create a standard singleton to hold the ...
2
votes
4answers
234 views
Get notification of object disposal/destruction
I need a way to track instances of various classes, without those classes having any knowledge that they are being tracked. Essentially, I have a class factory which creates instances and hands them ...