2
votes
1answer
29 views
Ruby includes returns false and nil
Can someone explain what the difference between false and nil this case is:
irb(main):008:0> Fixnum < Integer
=> true
irb(main):011:0> Integer < Fixnum
=> false
…
0
votes
0answers
11 views
Sealed classes and Object Browser
While inspecting the the .net object model in the Object Browser window, I came across the lack of information on sealed classes.
If for instance, one navigates to the mscorlib co …
0
votes
1answer
78 views
How can I tell if a given method is a classmethod or instancemethod in Python?
Checking to see if m.im_self is the class works some of the time but doesn't seem to be 100% reliable (ex. if you use multiple decorators on a method.)
1
vote
3answers
105 views
How do I avoid having Python class data shared among instances?
What I want is this behavior:
class a:
list=[]
y=a()
x=a()
x.list.append(1)
y.list.append(2)
x.list.append(3)
y.list.append(4)
print x.list
[1,3]
print y.list
[2,4 …
0
votes
2answers
60 views
Class design ideas for state machine like object.
I'm writing a state machine like object. Looks like
Class A:
vector<Actions> m_enter_actions;
vector<Actions> m_exit_actions;
public:
ClassA....
~ClassA
Se …
0
votes
5answers
58 views
How do i add and remove an active class with jQuery?
I have an unordered list.
<style>
#button1 { position:relative; z-index: 3; }
#button2 { position:relative; z-index: 2; }
#button3 { position:relative; z-index: 1; }
& …
0
votes
2answers
48 views
Public API with Private Elements in Python
I'm working on a web mapping service and would like to provide my users with a Python API that they can use to create custom plugins. These plugins would be running on my server so …
1
vote
6answers
83 views
Creating class instance properties from a dictionary in Python
I'm importing from a CSV and getting data roughly in the format
{ 'Field1' : 3000, 'Field2' : 6000, 'RandomField' : 5000 }
The names of the fields are dynamic. (Well, they're d …
0
votes
1answer
93 views
Do shallow copies share pointers? (C++)
I know that if I do something like this:
class Obj
{
public:
int* nine;
};
Obj Obj1; //Awesome name
int eight = 8;
Obj1.nine = &eight;
Obj Obj2 = Obj1; //Another Awesome …
0
votes
1answer
83 views
Help with classes in php
class Controller {
protected $_controller;
protected $_action;
protected $_template;
public $doNotRenderHeader;
public $render;
function __construct($con …
0
votes
3answers
58 views
Using Base classes in WPF
Hello. I have problem with base classes in WPF. I try to make a base class with some base elements, so that other windows can inherit these components. But all that i have, when I …
1
vote
2answers
65 views
Toggle between two classes in jQuery
I'm trying to modify the icons for the jQuery UI portlets. Rather than have a plus to minimize and a minus to expand, I wanted to switch them.
I've only had limited success wit …
1
vote
4answers
47 views
Property accessors in Visual Basic .Net
Could someone explain to me the concept of Get and Set property? It's just not sinking in for me.
Thanks!
5
votes
8answers
336 views
C# / .NET : when structures are better than classes?
Duplicate of: When to use struct in C#?
Are there practical reasons to use structures instead of some classes in Microsoft .NET 2.0/3.5 ?
"What is the difference between structur …
1
vote
1answer
34 views
Find all class names in a WPF project
In WPF, how do I use reflection to find all classes in a project? I'm interested in obtaining the ones whos names match a certain regular expression.
