active questions tagged instance - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T23:40:01Z http://stackoverflow.com/feeds/tag/instance http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1817814/c-objects-variable-cannot-be-evaluated-but-variable-from-reference-to-the-sa 0 c++: Object's variable cannot be evaluated, but variable from reference to the same object can??? Zepee 2009-11-30T04:16:13Z 2009-11-30T10:36:43Z <p>Ok, this is veeery weird... I think. What I mean with the title is:</p> <p>inside the act() function from an actionHandler object I have:</p> <pre><code>state-&gt;getHumanPieces(); </code></pre> <p>Which gives me an address violation of some sort, apparently 'this' does not have a 'state' variable initialized... It so happens this actionHandler class has a static variable, which is a pointer to an instance of itself, called 'handler'... and if I do:</p> <pre><code>handler-&gt;state-&gt;getHumanPieces(); </code></pre> <p>It works perfectly.. In order to make this even clearer:</p> <p>That 'handler' pointer, points to the only instance of actionHandler existing in the whole program (singleton pattern).. So basically when I run this act() function from my actionHandler object, it doesn't let me access the 'state' variable, BUT if from that object, I try to access the same variable through a pointer to the same object, it is ok?? I don't get what is going on.. I'm not sure if it is clear, prob a bit confusing, but I hope it is understandable..</p> <p>Btw, the VS08 debugger is showing what I mean:</p> <pre><code>this: 0x000000 {state=???} handler: someAddress {state= someAddress} handler:... state:... state: CXX0030: ERROR: expression cannot be evaluated </code></pre> <p>I hope that makes it clearer, it's the little tree-structure that shows up on the little window where the current values of the variables are shown (Autos).</p> <p>EDIT: I so get that the this pointer is null, I just don't understand how it can be null.. I'll post some code:</p> <p>actionHandler.h:</p> <pre><code>class gameState; class actionHandler { public: static actionHandler* Instance(){return handler;} void act(int,int); private: actionHandler(); static actionHandler* handler; gameState *state; }; </code></pre> <p>actionHandler.cpp:</p> <pre><code>actionHandler* actionHandler::handler = new actionHandler(); actionHandler::actionHandler() { state = gameState::Instance(); } void actionHandler::act(int x, int y) { state-&gt;getHumanPieces(); } </code></pre> <p>now, in gameState.h i have a similar structure(singleton) and an actionHandler* private var, which gets initialised in:</p> <pre><code>gameState::gameState() { handler = actionHandler::Instance(); } </code></pre> <p>and also a getHandler() func which returns the handler. This all should get initialised in main.cpp:</p> <pre><code>gameState *currState = gameState::Instance(); actionHandler *handler = currState-&gt;getHandler(); </code></pre> <p>and then is used:</p> <pre><code>handler-&gt;act(event-&gt;button.x,event-&gt;button.y); </code></pre> <p>main.cpp is writen in simple .c style, with no header, so yes I suppose the fucntion calling the handler is static... however, I also make calls to the gameState* pointer, which supposedly works exactly in the same way as the actionHandler* one.. Hope this makes it more clear</p> http://stackoverflow.com/questions/1677341/can-i-set-a-property-on-an-object-that-is-only-declared-on-the-instance-type-whe 0 Can I set a property on an object that is only declared on the instance type, when I don't know the type? WilberBeast 2009-11-04T23:14:49Z 2009-11-30T03:00:03Z <p>Let me explain. I have a List into which I am adding various ASP.NET controls. I then wish to loop through the list and set a CssClass, however not every Control supports the property CssClass.</p> <p>What I would like to do is test if the underlying instance type supports the CssClass property and set it, but I'm not sure how to do the conversion prior to setting the property since I don't know the type of each Control object.</p> <p>I know that I can use typeof or x.GetType(), but I'm not sure how to use these to convert the controls back to the instance type in order to test for and then set the property.</p> <p><hr></p> <p>Actually I seem to have solved this, so I thought that I would post the code here for others.</p> <pre><code>foreach (Control c in controlList) { PropertyInfo pi = c.GetType().GetProperty("CssClass"); if (pi != null) pi.SetValue(c, "desired_css_class", null); } </code></pre> <p>I hope that this helps someone else as I has taken me hours to research these 2 lines of code.</p> <p>Cheers</p> <p>Steve</p> http://stackoverflow.com/questions/1812959/how-do-i-delete-an-instance-of-an-intermediate-model-in-a-django-many-to-many-rel 0 How do I delete an instance of an intermediate model in a Django Many-to-many relationship? miernik 2009-11-28T16:33:57Z 2009-11-28T16:46:34Z <p>According to an example at <a href="http://docs.djangoproject.com/en/dev/topics/db/models/#extra-fields-on-many-to-many-relationships" rel="nofollow">http://docs.djangoproject.com/en/dev/topics/db/models/#extra-fields-on-many-to-many-relationships</a> I have three models:</p> <pre><code>class User(models.Model): name = models.CharField(max_length=128) class Group(models.Model): name = models.CharField(max_length=128) members = models.ManyToManyField(User, through='Membership') class Membership(models.Model): person = models.ForeignKey(User) group = models.ForeignKey(Group) date_joined = models.DateField() </code></pre> <p>Adding members works. But how do I delete a single Membership instance (a User quits a group), without deleting neither the User, nor the Group?</p> <p>When I try deleting it like this:</p> <pre><code> u = User(request.user) g = Group.objects.get(id=group_id, membership__user=u) m = Membership(user=request.user, group=g) m.delete() </code></pre> <p>I get an error:</p> <pre><code>AssertionError at /groups/quit/1/ Membership object can't be deleted because its id attribute is set to None. </code></pre> http://stackoverflow.com/questions/1795816/can-a-c-class-constructor-know-its-instance-name 4 Can a C++ Class Constructor Know Its Instance Name? Adam Dempsey 2009-11-25T09:51:24Z 2009-11-25T11:43:55Z <p>Is it possible to know the object instance name / variable name from within a class method? For example:</p> <pre><code>#include &lt;iostream&gt; using namespace std; class Foo { public: void Print(); }; void Foo::Print() { // what should be ????????? below ? // cout &lt;&lt; "Instance name = " &lt;&lt; ?????????; } int main() { Foo a, b; a.Print(); b.Print(); return 0; } </code></pre> http://stackoverflow.com/questions/1793082/how-to-dynamically-create-a-union-instance-in-c 1 How to dynamically create a union instance in c++? derrdji 2009-11-24T21:37:26Z 2009-11-24T21:52:59Z <p>I need to have several instances of a union as class variables, so how can I create a union instance in the heap? thank you</p> http://stackoverflow.com/questions/1783987/get-the-control-with-a-certain-name-provided-as-a-string-in-c 2 get the control with a certain name provided as a string in c# Nathan 2009-11-23T15:46:51Z 2009-11-23T15:52:02Z <p>Hi there, i have the name of a control in a string and I want to manipulate the control, how do i turn the string into the current form instance of that control in c#?</p> <p>e.g.</p> <pre><code>string controlName = "Button1"; </code></pre> <p>What goes here? </p> <pre><code>button1.text = "Changed"; </code></pre> <p>Thanks</p> http://stackoverflow.com/questions/1778675/method-accessing-protected-property-of-another-object-of-the-same-class 1 Method accessing protected property of another object of the same class Janis 2009-11-22T13:19:34Z 2009-11-22T13:51:49Z <p>Should an object's method be able to access a protected property of another object of the same class?</p> <p>I'm coding in PHP, and I just discovered that an object's protected property is allowed to be accessed by a method of the same class even if not of the same object.</p> <p>In the example, at first, you'll get "3" in the output - as function readOtherUser will have successfully accessed the value -, and after that a PHP fatal error will occur - as the main program will have failed accessing the same value.</p> <pre><code>&lt;?php class user { protected $property = 3; public function readOtherUser () { $otherUser = new user (); print $otherUser->property; } } $user = new user (); $user->readOtherUser (); print $user->property; ?></code></pre> <p>Is this a PHP bug or is it the intended behaviour (and I'll have to relearn this concept… :)) (and are there references to the fact)? How is it done in other programming languages?</p> <p>Thanks!</p> http://stackoverflow.com/questions/1756869/invoking-an-instance-method-without-invoking-constructor 1 Invoking an instance method without invoking constructor Serhat Özgel 2009-11-18T15:40:24Z 2009-11-18T16:39:32Z <p>Let's say I have the following class which I am not allowed to change:</p> <pre><code>public class C { public C() { CreateSideEffects(); } public void M() { DoSomethingUseful(); } } </code></pre> <p>and I have to call M without calling the constructor. Is it possible?</p> http://stackoverflow.com/questions/1742787/check-if-a-specific-exe-file-is-running 1 Check if a specific exe file is running murasaki5 2009-11-16T15:11:48Z 2009-11-16T15:58:02Z <p>I want to know how i can check a program in a specific location if it is running. For example there are two locations for test.exe in c:\loc1\test.exe and c:\loc2\test.exe. I only wanted to know if c:\loc1\test.exe is running and not all instances of test.exe.</p> http://stackoverflow.com/questions/1732671/how-to-get-instance-from-string-in-c 1 How to get instance from string in C#? Jooj 2009-11-14T00:03:20Z 2009-11-14T10:40:00Z <p>Is it possible to get the property of a class from string and then set a value?</p> <p>Example:</p> <pre><code>string s = "label1.text"; string value = "new value"; label1.text = value; &lt;--and some code that makes this </code></pre> <p>How to do this?</p> http://stackoverflow.com/questions/1714931/what-are-singletonmethods-and-instancemethods-in-ruby 1 What are SingletonMethods and InstanceMethods in Ruby T.Raghavendra 2009-11-11T12:37:15Z 2009-11-12T10:51:30Z <p>I see a lot of stuff </p> <pre><code>include ActiveRecord::XXXX::InstanceMethods extend ActiveRecord::XXXX::SingletonMethods </code></pre> <p>I am unaware of the property or there working, just wanted a easy to understand answer. if it has a good reason to be used.</p> http://stackoverflow.com/questions/1667768/nhibernate-manytomany-relationship-using-auditinterceptor-object-references-a 0 NHibernate ManyToMany relationship - using AuditInterceptor - object references an unsaved transient instance - save the transient instance before flushing Mani 2009-11-03T14:42:50Z 2009-11-11T00:06:20Z <p>The domain model the DomainObject's <strong>audit fields</strong> are populated using an <strong>AuditInterceptor</strong>.</p> <blockquote> <pre><code>DomainObject Id EstablishDate EstablishId UpdateDate UpdateId Message : DomainObject Description MessageDistributions Distribution : DomainObject BeginEffective EndEffective MessageDistributions MessageDistribution : DomainObject Distribution Message </code></pre> </blockquote> <p>In this <em>ManyToMany</em> relationship the <strong>MessageDistribution</strong> also implements the <strong>DomainObject</strong> in order to use the AuditInterceptor. This keeps me from using the <strong>HasManyToMany</strong> clause in the FluentNHibernate Mapping.</p> <p>Here is the mapping code.</p> <pre><code>public class MessageMap : ClassMap&lt;Message&gt; { public MessageMap() { WithTable("Message"); Id(x =&gt; x.Id).GeneratedBy.Identity().ColumnName("MessageSeq").WithUnsavedValue(0); Map( x =&gt; x.Description ).ColumnName( "SummaryName" ); Map(x =&gt; x.EstablishDate); Map(x =&gt; x.EstablishId); Map(x =&gt; x.UpdateDate); Map(x =&gt; x.UpdateId); HasMany( x =&gt; x.MessageDistributions ) .KeyColumnNames.Add( "MessageSeq" ) .Access.AsCamelCaseField( Prefix.Underscore ) .Cascade.All().Inverse(); } } public class MessageDistributionMap : ClassMap&lt;MessageDistribution&gt; { public MessageDistributionMap() { WithTable("MessageDistribution"); Id(x =&gt; x.Id).GeneratedBy.Identity().ColumnName("MessageDistributionSeq").WithUnsavedValue(0); Map(x =&gt; x.EstablishDate); Map(x =&gt; x.EstablishId); Map(x =&gt; x.UpdateDate); Map(x =&gt; x.UpdateId); References(x =&gt; x.Message).ColumnName("MessageSeq"); References(x =&gt; x.Distribution).ColumnName("DistributionSeq"); } } public class DistributionMap : ClassMap&lt;Distribution&gt; { public DistributionMap() { WithTable("Distribution"); Id(x =&gt; x.Id).GeneratedBy.Identity().ColumnName("DistributionSeq").WithUnsavedValue(0); Map(x =&gt; x.BeginEffectiveDate); Map(x =&gt; x.EndEffectiveDate); Map(x =&gt; x.EstablishDate); Map(x =&gt; x.EstablishId); Map(x =&gt; x.UpdateDate); Map(x =&gt; x.UpdateId); HasMany( x =&gt; x.MessageDistributions ) .KeyColumnNames.Add( "DistributionSeq" ) .Access .AsCamelCaseField( Prefix.Underscore ) .Cascade.All().Inverse(); } } </code></pre> <p>Below is a test to implement the above relationship. </p> <pre><code>[Test] public void Should_Add_A_Message_To_Existing_Distribution() { var desc = "Test message " + DateTime.Now; var message = new Message { Description = desc, PumpType = 1 }; var distribution = new Distribution { BeginEffectiveDate = new DateTime( 2009, 9, 2 ), EndEffectiveDate = new DateTime( 2009, 9, 10 ), Priority = 1 }; var messageDistribution = new MessageDistribution { Distribution = distribution }; message.AddMessageDistribution(messageDistribution); _repository.Save( message ); _repository.Clear(); var retrievedMessage = _repository.GetById(message.Id); Assert.AreEqual(message, retrievedMessage); Assert.AreEqual(distribution, retrievedMessage.MessageDistributions[0].Distribution); } </code></pre> <p>I execute the test using a test runner and it results in the following error on the line _repository.Save( message ); </p> <blockquote> <pre><code> NHibernate.TransientObjectException: object references an unsaved transient instance - save the transient instance before flushing: Speedway.StoreOperations.CrindMessaging.Core.Domain.Distribution </code></pre> </blockquote> <p>In my AuditInterceptor I have a </p> <pre><code>Debug.WriteLine(string.Format("{0} : {1}", propertyNames[i], state[i])); </code></pre> <p>in the "OnSave and OnFlushDirty" events. </p> <p>I can see the Message and MessageDistribution are coming through but the Distribution entity never gets touched. </p> <p>So my question is, is there something wrong with my FluentMapping? Do I have the "Inverse" in the wrong place? Has anyone run across this situation?</p> http://stackoverflow.com/questions/1705847/threading-linq-class-list-problem 1 Threading / Linq Class list problem Xavier 2009-11-10T05:38:29Z 2009-11-10T05:51:09Z <p>Ok, so ive been writing a very complex multiserver irc bot recently, and ive encountered an issue.. i stipped down the code as much as i could because its very large, the full code is here: <a href="http://pastie.org/691449.txt" rel="nofollow">http://pastie.org/691449.txt</a></p> <p>so what my issue is, when i call the Disconnect() void in Connection, instead of disconnecting and closing the given server, it just freezes the calling class instead of stopping the correct instance of the Class. Any help would be greatly appriciated ~ code examples for answers when possible please</p> http://stackoverflow.com/questions/1695648/same-instance-referred-to-by-multiple-constructors -1 Same instance referred to by multiple constructors Barrett Ames 2009-11-08T07:17:17Z 2009-11-08T07:26:02Z <p>I have an instance of Class A that I want to refer to in the constructor of multiple instances of B. How can I refer to that particular instance of Class A in each new instance of B? </p> http://stackoverflow.com/questions/1690400/getting-an-instance-name-inside-class-init 0 Getting an instance name inside class __init__() Akoi Meexx 2009-11-06T20:58:57Z 2009-11-06T21:54:19Z <p>While building a new class object in python, I want to be able to create a default value based on the instance name of the class without passing in an extra argument. How can I accomplish this? Here's the basic pseudo-code I'm trying for:</p> <pre><code>class SomeObject(): defined_name = u"" def __init__(self, def_name=None): if def_name == None: def_name = u"%s" % (&lt;INSTANCE NAME&gt;) self.defined_name = def_name ThisObject = SomeObject() print ThisObject.defined_name # Should print "ThisObject" </code></pre> http://stackoverflow.com/questions/1680001/asp-net-strategies-to-manage-a-single-browser-instance-no-new-tabs-windows 0 ASP.NET: strategies to manage a single browser instance...(no new tabs/windows) deostroll 2009-11-05T11:36:53Z 2009-11-05T12:12:24Z <p>All the browsing to this particular website should happen within the instance it was logged-in from...it should not allow side-by-side browsing if opened in a new tab or a new window. In other words if I am already browsing (and logged-in), and decide to open an new tab/window to browse the same site...my server should trap this, and report a friendly message. Is this possible? Also I what to know about cross platform feasibility of this requirement...</p> http://stackoverflow.com/questions/1672064/decorating-instance-methods-in-python 1 Decorating Instance Methods in Python Koobz 2009-11-04T06:50:58Z 2009-11-04T13:36:41Z <p>Here's the gist of what I'm trying to do. I have a list of objects, and I know they have an instance method that looks like:</p> <pre><code>def render(self, name, value, attrs) # Renders a widget... </code></pre> <p>I want to (essentialy) decorate these functions at runtime, as I'm iterating over the list of objects. So that their render functions become this:</p> <pre><code>def render(self, name, value, attrs) self.attrs=attrs # Renders a widget... </code></pre> <p>Two caveats: 1. The render function is part of django. I can't put a decorator inside their library (well I could, but then I have to maintain and migrate this change). 2. It's an instance method.</p> <p>An example here: <a href="http://wiki.python.org/moin/PythonDecoratorLibrary" rel="nofollow">http://wiki.python.org/moin/PythonDecoratorLibrary</a></p> <p>Shows how to add a new instance method to a class. The difference here is I want to fall through to the original method after I've memorized that attrs parameter.</p> http://stackoverflow.com/questions/388859/c-get-list-of-open-windows-form-instance-that-are-excuted-from-different-assemb 2 C#: Get list of open windows form instance that are excuted from different assembly. abmv 2008-12-23T13:22:06Z 2009-10-27T10:07:10Z <p>I have a 'loader app' that loads a menu and when user clicks the menu image button a list view opens based on the text </p> <p>(if text = employee)<br /> (Go to class A) (Go to class B) ... ... (Show List View Window) </p> <p>if he clicks again on the same button it opens again, I would like to prevent this.Any ideas?</p> <p>i.e but this for a WPF application</p> http://stackoverflow.com/questions/1581809/create-a-object-a-new-or-new-a 5 create a object : A.new or new A? pierr 2009-10-17T09:26:32Z 2009-10-27T09:13:12Z <p>Hi,</p> <p>Just out of curiosity: Why C++ choose <code>a = new A</code> instead of <code>a = A.new</code> as the way to instantiate an object? Doesn't latter seems more like more object-oriented?</p> http://stackoverflow.com/questions/1623913/find-where-a-class-was-instantiated 1 Find where a class was instantiated mnml 2009-10-26T09:41:14Z 2009-10-26T09:49:17Z <p>I have trying to solve the error : <code>Fatal error: Cannot redeclare class</code></p> <p>I have been looking everywhere and I can't find where the class was instantiated.</p> <p>Is there anyway I can print debug info about the existing instance of that class.</p> http://stackoverflow.com/questions/1403425/assigning-instance-names-to-multiple-mcs 0 assigning instance names to multiple mcs apricot 2009-09-10T04:52:28Z 2009-10-23T02:00:03Z <p>I am wondering if anyone knows of any extensions or scripts that assign instance names to multiple mcs at once. I have the same mc on hundreds of keyframes and I have to convert them to graphic symbols to animate then back to mcs for scipting but they lose their instance names. I've read a post on this forum that came close to helping me with some javascript but when I tried it I got syntax errors. Thanks!</p> http://stackoverflow.com/questions/293431/python-object-deleting-itself 7 Python object deleting itself Null 2008-11-16T03:29:59Z 2009-10-22T10:12:26Z <p>Why won't this work? I'm trying to make an instance of a class delete itself.</p> <pre><code>&gt;&gt;&gt; class A(): def kill(self): del self &gt;&gt;&gt; a = A() &gt;&gt;&gt; a.kill() &gt;&gt;&gt; a &lt;__main__.A instance at 0x01F23170&gt; </code></pre> http://stackoverflow.com/questions/1482422/browsing-editing-rdf-owl-instances 1 Browsing/editing RDF/OWL Instances Brad Cox 2009-09-26T23:38:35Z 2009-10-20T22:37:09Z <p>I'm looking for a graphical browser for examining large networks of OWL/RDF instances. Protege's instance browser isn't really useful and if COE supports instance browsing, I've not discovered how. Network size is around a million nodes.</p> <p>I'm hoping to be able to search for an instance, expand it to show its relationships, and explore other instances from there. Graphical would be nice, but a plain Jtree would do too.</p> http://stackoverflow.com/questions/1593632/python-get-class-name-from-instance 1 Python: Get class name from instance? Chuck 2009-10-20T10:11:42Z 2009-10-20T12:37:29Z <p>Example:</p> <pre><code>class Class1: def __init__(self): self.x = Class2('Woo!') class Class2: def __init__(self, word): print word meow = Class1() </code></pre> <p>How do I derive the class name that created the self.x instance? In other words, if I was given the instance self.x, how do I get the name 'Class1'? Using <code>self.x.__class__.__name__</code> will obviously only give you the Class2 name. Is this even possible? Thanks.</p> http://stackoverflow.com/questions/1021447/reflecting-on-property-to-get-attributes-how-to-do-when-they-are-defined-elsewhe 3 Reflecting on property to get attributes. How to do when they are defined elsewhere? Marco Mangia 2009-06-20T11:26:22Z 2009-10-19T19:55:53Z <p>I have a class Bar like this:</p> <pre><code>class Foo : IFoo { [Range(0,255)] public int? FooProp {get; set} } class Bar : IFoo { private Foo foo = new Foo(); public int? FooProp { get { return foo.FooProp; } set { foo.FooProp= value; } } } </code></pre> <p>I need to find the attribute [Range(0,255)] reflecting ONLY on the property Bar.FooProp. I mean, the prop is decorated in the class instance (.. new Foo()) not in the class when I am currently parsing. Infact Bar.FooProp has no attributes</p> <p>EDIT</p> <p>I moved attributes on the interface's definition, so what I have to do is parsing the inherited interfaces to find them. I can do that because Bar class must implement IFoo.In this particular case, I'm lucky, but the problem remains when I have no interfaces... I will take note for the next time</p> <pre><code>foreach(PropertyInfo property in properties) { IList&lt;Type&gt; interfaces = property.ReflectedType.GetInterfaces(); IList&lt;CustomAttributeData&gt; attrList; foreach(Type anInterface in interfaces) { IList&lt;PropertyInfo&gt; props = anInterface.GetProperties(); foreach(PropertyInfo prop in props) { if(prop.Name.Equals(property.Name)) { attrList = CustomAttributeData.GetCustomAttributes(prop); attributes = new StringBuilder(); foreach(CustomAttributeData attrData in attrList) { attributes.AppendFormat(ATTR_FORMAT, GetCustomAttributeFromType(prop)); } } } } </code></pre> http://stackoverflow.com/questions/132777/do-you-prefix-your-instance-variable-with-this-in-java 5 Do you prefix your instance variable with 'this' in java ? VonC 2008-09-25T11:43:28Z 2009-10-14T13:53:27Z <p>And... we have another QAW (Quality Assurance War) on our hand.</p> <p>After reading the more generic "<a href="http://stackoverflow.com/questions/10314/how-do-you-name-your-instanceparam-values">What kind of prefix do you use for member variables?</a>" question, I tried to argue with my QA department about the advantages to <strong>always add 'this' before instance (or member) variables in java code</strong>. They are not convinced.</p> <p>I know there is a <a href="http://stackoverflow.com/questions/10314/how-do-you-name-your-instanceparam-values">similar question</a> question, but specific to cocoa.</p> <p>My arguments for adding 'this' before member variables in java are:</p> <ul> <li>there is no sure way to ensure <em>one naming convention</em> for instance variables, whereas 'this' is universal to the language</li> <li>it is easy to do (with IDE like eclipse, and the use of the 'quick fix' mechanism, that IDE can add 'this' automatically throughout the code of a given java source code)</li> <li>it clearly differentiates instance variables and member variables, again without depending on a specific naming convention.</li> </ul> <p>When it comes to java, what is your take on that practice ?</p> <p><hr /></p> <p>Your answers are very informative and help me to understand why the QA (for code quality) was not convinced.</p> <p>You are basically saying that it is:</p> <ul> <li>a matter of taste</li> <li>a risk of code cluttering (too much 'this' everywhere)</li> <li>a way to resolve some <em>punctual</em> naming conflict, or avoid mutability issue.</li> </ul> <p>I would however argue that:</p> <ul> <li>eclipse already alert us whenever a naming override occurs (between a parameter and an instance variable), so this is not actually an issue for us.</li> <li>final keyword is already enforced (findbugs does report every 'final' needed)</li> <li>adding 'this' is an alternative to whatever naming convention you may favor (easily applied automatically).</li> </ul> <p>The net added value of 'this. prefix' would be <em>a clear identification, in a long method, of the usage of instance variables, <strong>whatever the quality/complexity of the code is</strong></em>.<br /> ... But that seem less important than a 'clear' code, based on the faith that the programmer will <em>actually</em> produced such a "clear-not-too-complex-good-quality" code.</p> <p>Why not. I do respect all those points of view, and thank you again for giving them here.<br /> If you have other argument for or against using 'this.' before instance variables, feel free to add them ;)</p> http://stackoverflow.com/questions/1542717/how-to-invoke-a-class-instance-in-php 1 How to "invoke" a class instance in PHP? NovumCoder 2009-10-09T09:11:35Z 2009-10-09T09:23:16Z <p>Hi,</p> <p>is there any possibility to "invoke" a class instance by a string representation?</p> <p>In this case i would expect code to look like this:</p> <pre><code>class MyClass { public $attribute; } $obj = getInstanceOf( "MyClass"); //$obj is now an instance of MyClass $obj-&gt;attribute = "Hello World"; </code></pre> <p>I think this must be possible, as PHP's SoapClient accepts a list of classMappings which is used to map a WSDL element to a PHP Class. But how is the SoapClient "invoking" the class instances?</p> http://stackoverflow.com/questions/1530333/codeigniter-how-can-i-create-a-new-instance-of-a-library-whenever-the-method-is 0 CodeIgniter: How can I create a new instance of a library whenever the method is called? unknown (google) 2009-10-07T08:45:52Z 2009-10-07T08:45:52Z <p>just some snippet of the code</p> <pre><code>function __construct() { $this-&gt;ci = &amp;get_instance(); ... ... } function run() { foreach($run_2_time as $run){ $this-&gt;deduct_user_point(); ... ... } } function deduct_user_point() { $this-&gt;ci-&gt;load-&gt;library('user_lib'); ... ... } </code></pre> <p>Firstly, i know that by executing $this->ci->load->library, it will create an object of the class but will subsequent call by the foreach loop in run() create a new object. My thought is no, but someone please verify.</p> <p>And yes, I do know of one other alternative, which is to insert a third parameter into $this->ci->load->library which is <strong>unique for every loop</strong>, </p> <pre><code>$this-&gt;ci-&gt;load-&gt;library('user_lib','',$class_name); </code></pre> <p>and that might solve the problem, but is that the only solution?</p> http://stackoverflow.com/questions/1527395/constant-instance-variables 3 Constant instance variables? nailer 2009-10-06T18:56:00Z 2009-10-06T22:24:49Z <p>I use 'property' to ensure that changes to an objects instance variables are wrapped by methods where I need to. </p> <p>What about when an instance has an variable that logically should not be changed? Eg, if I'm making a class for a Process, each Process instance should have a pid attribute that will frequently be accessed but should not be changed. </p> <p>What's the most Pythonic way to handle someone attempting to modify that instance variable? </p> <ul> <li><p>Simply trust the user not to try and change something they shouldn't? </p></li> <li><p>Use property but raise an exception if the instance variable is changed? </p></li> <li><p>Something else?</p></li> </ul> http://stackoverflow.com/questions/1520309/access-running-instance-of-application 1 Access Running Instance Of Application IrfanRaza 2009-10-05T14:08:35Z 2009-10-05T15:51:07Z <p>Hi,</p> <p>I found there are lots of posts showing how to detect if the application instance already running. But I cant find any one that shows how to access or use the same running application.</p> <p>I have created shell menu items and linked them an application. For ex. If you right click on any folder it shows "OS Monitor". If i clicked on that an application is started. If I again right clicked on the folder and selected "OS Monitor" another instance of same application is started. I have to prevent this. Further more when user closes the "OS Monitor" form I just made it hidden. So that if the user again selects the same menu option then the same running form need to show.</p> <p>I have created the application using C#2005. Does anybody have the idea how I could access the same running instance of the application.</p> <p>Thanks in advance.</p>