Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

13
votes
8answers
16k views

Python object deleting itself

Why won't this work? I'm trying to make an instance of a class delete itself. >>> class A(): def kill(self): del self >>> a = A() >>> a.kill() >>> a ...
12
votes
10answers
4k views

How do i tell if one instance of my program is running?

How do i tell if one instance of my program is running? i thought i could do this with a data file but it would just be messy :( i want to do this as i only want 1 instance to ever be open at one ...
11
votes
1answer
299 views

How to organize Haskell modules with instances: stick to data type vs type class?

The general question is which module structure is more convenient when adding instances for existing objects? Which pros and cons there are? Let's say I want to add NFData instance for Seq type. I ...
11
votes
4answers
304 views

How to wrap a static class in a non-static instance object (dynamically)

I have an interesting problem. I need to wrap static classes dynamically. I.e. return a non-static instance to my callers. e.g.: public object CreateInstance(string className) { Type t = ...
11
votes
6answers
4k views

How can I call a static method on a variable class?

I'm trying to make some kind of function that loads and instantiates a class from a given variable. Something like this: <?php function loadClass($class) { $sClassPath = ...
11
votes
10answers
3k views

Can this Java singleton get rebuilt repeatedly in WebSphere 6?

I'm trying to track down an issue in our system and the following code worries me. The following occurs in our doPost() method in the primary servlet (names have been changed to protect the guilty): ...
9
votes
2answers
151 views

How do i test that an object is an instance of a particular class in D?

How do i test that an object is an instance of a particular class in D? Something akin to Javascript's instanceof keyword?
9
votes
6answers
453 views

Accessing the Private Constructor

I am java developer, went for an interview. I have been asked a question about the Private constructor 1) Can I access a Private Constructor of a Class and Instantiate the class. I was thinking and ...
8
votes
9answers
512 views

Class methods vs instance methods

Hi Are class methods generally measured to be faster than instance methods since it doesn't require loading an instance? If so, should we use class methods when possible? Thanks
8
votes
8answers
2k views

Get Instance ID of an Object in PHP

I've learn a while ago on StackOverflow that we can get the "instance ID" of any resource, for instance: var_dump(intval(curl_init())); // int(2) var_dump(intval(finfo_open())); // int(3) ...
8
votes
7answers
5k views

C# : how to - single instance application that accepts new parameters?

I'm creating a (C#) program that downloads binaries using NZB files, there may only be one instance of my application running at any time. So when a user doubleclicks an .nzb-file and my program is ...
7
votes
7answers
185 views

What does 'is an instance of' mean in Javascript?

The answer to this question: What is the initial value of a JavaScript function's prototype property? has this sentence: The initial value of prototype on any newly-created Function instance ...
7
votes
1answer
104 views

New instance on Taskbar middle-click / shift+click

In Windows 7, some programs allow the user to launch multiple instances by middle clicking / shift+clicking on the taskbar item (ex: Paint, Notepad, Visual Studio...) However, none of the ...
7
votes
6answers
2k views

Limit instances creation of a class?

I am using C#. I have created a class which can be included in any c#.net project (desktop or web based), but I want that only 10 objects will be created in that application of my class. If object ...
7
votes
7answers
4k views

Performance of using static methods vs instantiating the class containing the methods

I'm working on a project in C#. The previous programmer didn't know object oriented programming, so most of the code is in huge files (we're talking around 4-5000 lines) spread over tens and sometimes ...
6
votes
7answers
200 views

Dynamically creating an instance of a class from a string containing the class name in C++

Lets say I have a base class with 100 children: class Base { virtual void feed(); ... }; class Child1 : public Base { void feed(); //specific procedure for feeding Child1 ... }; ... ...
6
votes
3answers
373 views

How to intercept instance method calls?

I am looking for a way to intercept instance method calls in class MyWrapper below: class SomeClass1: def a1(self): self.internal_z() return "a1" def a2(self): return ...
6
votes
2answers
268 views

Instance variables vs parameter passing? Is there an argument?

So, I have been working on re-factoring some legacy code recently and have found myself questioning the validity of some of the re-factoring decisions I have been making. One such query has been ...
6
votes
4answers
212 views

Is there a built in way to identify instances of a class?

I am doing some diagnostic logging with one of my C#.NET projects and I would like to be able to log an identifier that represents a specific instance of a class. I know I could do this with a static ...
6
votes
1answer
2k views

Django: Initializing a FormSet of custom forms with instances

Given the following models: class Graph(models.Model): owner = models.ForeignKey(User) def __unicode__(self): return u'%d' % self.id class Point(models.Model): graph = ...
6
votes
3answers
10k views

Python: Get class name from instance?

Example: class Class1: def __init__(self): self.x = Class2('Woo!') class Class2: def __init__(self, word): print word meow = Class1() How do I derive the class name that ...
6
votes
8answers
404 views

create a object : A.new or new A?

Just out of curiosity: Why C++ choose a = new A instead of a = A.new as the way to instantiate an object? Doesn't latter seems more like more object-oriented?
5
votes
3answers
125 views

Is a null reference an instance from a class?

This is a simple code class Foo { } class Bar extends Foo { } public class Main { public static void main(String[] args) throws Exception { fn(null); } static void fn(Foo f) { ...
5
votes
2answers
94 views

Java's static/instance variables operation performance

While reading Jack Shirazi's 'Java performance tuning', I came across the following statement: "Instance and static variables can be up to an order of magnitude slower to operate on when compared to ...
5
votes
7answers
482 views

Ever need to destroy singleton intance?

By using singleton, only one instance of it can be created. Do we ever need to destroy that instance? I have a singleton DBManager, which manages a JDBC connection and query operations. By calling ...
5
votes
6answers
2k views

Writing to a static variable in an instance method, why is this a bad practice?

I am a little confused here with this findbugs warning in eclipse. public class MyClass { public static String myString; } public class AnotherClass { public void doSomething() { ...
5
votes
1answer
153 views

Amazon EC2 Instance IDs - Why XOR?

According to Guy Rosen and RightScale the Amazon EC2 instance IDs contain two XORs against the first and second half of the "Inner ID" and all three against their own constant. I understand that we ...
5
votes
4answers
169 views

Printing class histogram programmaticly

is there any way to print top used N classes on the current java application programmaticly? sample output: N=10 num #instances #bytes class name -------------------------------------- 1: ...
5
votes
3answers
4k views

Unity: How to remove(unregister) registered instance from Unity mapping

I meet one problem that i can't solve now. I have the following: UnityHelper.DefaultContainer.RegisterInstance(typeof(IMyInterface), "test", instance); where UnityHelper.DefaultContainer is my ...
5
votes
3answers
3k views

Python : Assert that variable is instance method?

How can one check if a variable is an instance method or not? I'm using python 2.5. Something like this: class Test: def method(self): pass assert is_instance_method(Test().method)
5
votes
3answers
1k views

Should I make this XmlSerializer static?

I've got a class which uses an XmlSerializer in its Read/WriteXml methods. The Serializer is currently private readonly. public class Foo : IXmlSerializable { private Bar _bar = new Bar(); ...
5
votes
3answers
11k views

SQL 2005 Express Edition - Install new instance

Looking for a way to programatically, or otherwise, add a new instance of SQL 2005 Express Edition to a system that already has an instance installed. Traditionally, you run Micrsoft's installer like ...
4
votes
1answer
48 views

Strange result using instance methods in PHP 5.3

Wondering how the example below is actually working, and how one would be able to do something like dynamically. Using call_user_func or call_user_func_array doesn't allow this to happen. <?php ...
4
votes
3answers
127 views

Why can't one put type signatures in instance declarations in Haskell?

I like to put type signatures for all top-level definitions in my code. However, type signatures in instance declarations don't seem to be allowed, and if I put one I get a "Misplaced type signature" ...
4
votes
3answers
55 views

Class instance methods? object methods?

According to Wikipedia: Class methods are methods that are called on a class (compare this to class instance methods, or object methods). Could you guys please clarify object methods to me? ...
4
votes
2answers
93 views

Instance set in Java?

Java defines a Set interface where contains() is defined as following: Returns true if this set contains the specified element. More formally, returns true if and only if this set contains an ...
4
votes
1answer
61 views

Wiring up returned object instances in a WCF client

I have a WCF service that can return several different collections. Objects in each collection can have references to objects in the other collections. Eg. I have a collection of orders, and a ...
4
votes
3answers
131 views

Can I make multiple Lua VM in single thread?

As I know, I can make a Lua VM for each thread. But I'm not sure about multiple instances in a thread. Is this possible?
4
votes
3answers
273 views

codeigniter instance of model class

I'm developing a site with codeigniter. Now, normally when you use a class in codeigniter, you basically use it as if it were a static class. For example, if I head a model called 'user', I would ...
4
votes
2answers
94 views

.NET: How to open a file with an existing instance?

I have an MDI file viewer. That is, my program can open multiple files in a single instance. By the way, my application is not a single instance application, so the users can open as many instances as ...
4
votes
1answer
188 views

Haskell — how to specify a typeclass instance?

I have a (fairly) legitimate case where there are two type instance implementations, and I want to specify a default one. After noting that doing modular arithmetic with Int types resulted in lots of ...
4
votes
3answers
183 views

A standard way in C++ to define an exception class and to throw exceptions

I want to build a class with functions that may throw exceptions that I want to catch when I use it. I inherit my_exception from the standard exception class. I implement the what() function so that ...
4
votes
3answers
189 views

Perl, @array in perl constructor

I write perl classes, but I don't know how to have a array or a hash in my $this variable ? I have a pack.pm : #!/usr/bin/perl -w use strict; use Parallel::ForkManager; package Pack; our $cgi = ...
4
votes
4answers
135 views

Instance count on parent and children classes

I have a parent type and there are some children types inheriting from it. I want to make sure there is only one instance of the parent and also for all the children types. Parent type: private ...
4
votes
2answers
437 views

C++: How to copy/create derived class instance from a pointer to a polymorphic base class?

I have been struggling with this kind of problem for a long time, so I decided to ask here. class Base { virtual ~Base(); }; class Derived1 : public Base { ... }; class Derived2 : public Base { ... ...
4
votes
2answers
498 views

There is a Default instance of form in VB.Net but not in C#, WHY?

I'm just curious to know that there is The (Name) property, which represents the name of the Form class.This property is used within the namespace to uniquely identify the class that the Form is an ...
4
votes
4answers
308 views

C++: Is it possible to call an object's function before constructor completes?

In C++, is it possible to call a function of an instance before the constructor of that instance completes? e.g. if A's constructor instantiates B and B's constructor calls one of A's functions.
4
votes
2answers
1k views

VB.NET: Get class name of a instance

Is there a way to get the instance's class name with VB.NET?
4
votes
2answers
889 views

How do I create an instance of a trait in a generic method in scala?

I'm trying to create an instance of a trait using this method val inst = new Object with MyTrait This works well, but I'd like to move this creation in to a generator function, ie. object Creator ...
4
votes
5answers
362 views

php Set a anonymous function in an instance

I am just starting out with PHP, and I am wondering if there is a way to add an anonymous function to a class instance. For instance, lets say... class A{ public B; } $c = new A(); //This is ...

1 2 3 4 5 14