0
votes
1answer
25 views
If I have an attribute declared over a method in an interface, do I need to put the attribute again in the method delcaration in the class?
Let's say I have a method such as
[OperationContract(IsOneWay = true)]
void UpdateIndex(IndexElement[] indexElements);
in an interface.
When I implement
void …
1
vote
6answers
100 views
Passing a pointer to a base class to derived class’s member functions in C++
How to access the derived class's data from one of its instances' member function that receives a pointer to the base class? I have:
class Base{
public:
virtual void …
-3
votes
4answers
152 views
the speaker interface [closed]
i have a class Student that implements speaker interface in java
public interface Speaker {
public void speak();
public void announce (String str);
}
how can i use these two abstract methods …
0
votes
1answer
19 views
Mapping Interfaces to Methods in Global.asax
I was recently at a Techdays seminar, at the SOLIDify Your Microsoft ASP.MVC MVC Applications session. The instructor had a demo that had mapping Interfaces to Methods from the Global.asax file …
0
votes
1answer
14 views
Setting the value to an int when clicking a button in Cocoa
Ok, i'm new to the whole GUI programming so this might be a very simple question but has proven difficult to me.
I have an application with 3 buttons. Button A is the main button, it starts and stops …
0
votes
1answer
25 views
How can I get the cellular connection interface name on the iPhone?
I did not find any clues on how to get the cellular connection interface name.
BTW is the cellular connection interface static or it can change for example from en1 to en2?
Thanks
3
votes
7answers
180 views
What is an alternative to having static abstract methods?
I'm having some problems trying to figure out how to solve a problem without being able to have static method in an abstract class or interface. Consider the following code. I have many Wizards that …
0
votes
5answers
62 views
Access control for a services (design decision)
Hi,
Let's say we have an interface 'IA' for which we have an implementation 'A'.
In our application domain, object 'A' never exists without a container object 'X'. So 'A' is never directly operated …
1
vote
1answer
49 views
Properly extending a COM interface (IDL)
I am working with some legacy c++ code and I need to extend an interface. The current interfaces are for example:
[
object,
uuid(guid),
version(1.0),
dual,
nonextensible,
oleautomation
]
…
0
votes
4answers
86 views
Variables in Interface
Why is that a variable used in an Interface is PUBLIC STATIC FINAL? Why "static" in particular?
1
vote
2answers
24 views
Make sure only corresponding implementations or childs of it will be handled
Imagine the following situation:
As may notice the Handler-childs and the Costumer-childs match each other. Each Handler has a method that takes a costumer.
Is there any good way true oo-ish to …
2
votes
8answers
291 views
Hands-free mice for programmers?
The standard setup for programmers really requires three hands: two for the keyboard, and one for the mouse. I'm not blessed with an extra hand, so my hands have to shift from mouse to keyboard to …
3
votes
7answers
227 views
How not to implement a function of an interface in class?
An interviewer asked me the following question in interview, but I don't know what could be the answer of this question, please help!!!
What must be done if i don't want to
implement a function …
2
votes
5answers
95 views
How should I inherit IDisposable?
Class names have been changed to protect the innocent.
If I have an interface named ISomeInterface. I also have classes that inherit the interface, FirstClass and SecondClass. FirstClass uses …
0
votes
1answer
88 views
Java: Simple issue with Interfaces and Generics
I made an interface to work with JGraphT. My intended use is like Comparable, in that implementing Comparable allows objects to be used with certain data structures. Simiarly, I have a JGraphT …
