Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
5answers
10k views

Early binding vs. late binding: what are the comparative benefits and disadvantages?

When discussing the evolution of computer languages, Alan Kay says that the single most important attribute of his Smalltalk is late binding; it gives the language its malleability and extensibility, ...
5
votes
6answers
84 views

How can I determine if a compiler uses early or late binding on a virtual function?

I have the following code: class Pet { public: virtual string speak() const { return ""; } }; class Dog : public Pet { public: string speak() const { return "Bark!"; } }; int main() { Dog ...
2
votes
4answers
163 views

Is this true about late binding?

I read in "Thinking in java" in chapter "Polymorphism" about the concept of "Late binding" , i just wanna know if my understanding of this concept is true Procedural languages know where is the ...
1
vote
0answers
40 views

Appropriate point to attach NodeChanged event, XAML

I've got a WPF usercontrol in a winforms application form. Basically, I want a generic eventhandler attached to my WPF TreeView to handle "Document.NodeChanged". As this particular event fires when ...
1
vote
1answer
164 views

WPF Assigning control Properties using reflection in c sharp

Hi I am trying to create an application that creates objects from data that is read from an XML file. Using reflection I have managed to create the objects I need and assign some of the properties ...
1
vote
2answers
409 views

iOS membership renewal few days late

What happens if I renew my iOS membership few days late? I know that Apple will deny "my ability to distribute applications on the App Store and your access to the iPhone Developer Program Portal." ...
1
vote
2answers
171 views

.NET 4.0 Late Binding: Ensure Assembly Authenticity?

I have to develop a .NET C# application that supports plugins. I’ve found a lot of information on the internet and it doesn’t seem to be so hard. I just have a specification that the Assemblies of ...
1
vote
4answers
1k views

Can I late bind to event handlers in C#?

I'm creating objects dynamically and inserting them into an html table, the objects are either labels or linkbuttons, if they are linkbuttons i need to subscribe an eventhandler to the click event, ...
0
votes
2answers
63 views

How to late bound WPF ComboBox using ObjectDataProvider

Suppose we have a WPF ComboBox and want to populate it using ObjectDataProvider. <ObjectDataProvider ObjectType="{x:Type provider:DataProviderProxy}" x:Key="BLDataProvider"> ...
0
votes
2answers
72 views

Android: onPause is too late to save editText contents

I want to save the text of an editText view when the user presses the back button. So I call (EditText)e.getText().toString() within the onPause() procedure. But this is too late: when onPause() is ...
0
votes
4answers
90 views

Late-binding static calls - C# 4.0

My goal is to be able to use intellisense, while still instructing the compiler to generate late-binding code (i.e. CallSites and Binders). Say I have class MyDynamicDataProvider { public int ...
0
votes
1answer
71 views

StoryBoard Too Late (Flip Navigation)

I have a Silverlight application with flip navigation which is composed of two storyboards that rotate the page and To = 90, From = 0 and the other From = -90, To = 0. The problem is that the second ...
0
votes
2answers
90 views

what are similarities and differences between dynamic loading and late binding?

From wikipedia: Dynamic loading is a mechanism by which a computer program can, at run time, load a library (or other binary) into memory, retrieve the addresses of functions and variables contained ...
0
votes
2answers
68 views

Java book with objects and classes in the middle [closed]

Possible Duplicate: What are the best resources for learning Java (books, websites, etc.)? Hello, next year Im going to university to study computer science, the university doesn't have a ...
0
votes
1answer
206 views

PHP Late Static Binding in Singleton

I has this code from some article on habrahabr.ru: abstract class Singleton { protected static $_instances = array(); protected function __construct() { } public static function ...
0
votes
2answers
192 views

How do I get members of a dynamically typed array in C#?

I'm dynamically calling web services in my program using the WSProxy class here, and I need to parse the returned object to XML, or at least access the members inside the returned web service result. ...
0
votes
2answers
239 views

Createinstance() - Am I doing this right?

I'm trying to put together a plugins system with .NET, and I'm not sure if I'm doing it correctly. The basis of the system is that a specific directory ({apppath}/Plugins/) will have a bunch of ...