|
|
Stories recently tagged with 'OOP'
|
|
submitted by
rsoni
8 days, 8 hours ago
dailycoding.com — How to do object oriented programming with JavaScript by taking simple example to a timer class.. read more...
|
|
tags:
OOP, JavaScript, Tips | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
ramiljoaquin
2 months, 20 days ago
blog.dmbcllc.com — I’ve been thinking about the state of the programmers coming into our industry recently. It seems to me that many of the college students who graduate today understand the syntax, but few know how to apply true object oriented principles to the real world. read more...
add a comment
|
category: C# | Views: 28
|
|
tags:
oriented, Programming, Education, object, C# | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
luchkovsky
1 year, 2 months ago
ajaxline.com — Lazy Inheritance is an approach intended to simplify writing OOP and provides support of prototype-based classes hierarhies, automatic resolving and optimizing classes dependencies. Lazy inheritance designates a postponed linking of an object with it's prototype (class) until it is needed.
The benefits:
* "Lazy inheritance" is a prototype based inheritance;
* It is not necessary to maintain proper order of script files declaration;
* HTML page is loaded faster since there are no objects created during page initialization and since some scripts could be loaded only at the moment in which they are actually necessary
* Dependencies are declared in more explicit way and class depends only on concrete scripts
* If lazy mode of scripts loading is used, only necessary scripts (which are actually required for application functionality) will be loaded. read more...
add a comment
|
category: Patterns | Views: 0
|
|
tags:
Prototype, loader, module, Inheritance, pattern | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
luchkovsky
1 year, 4 months ago
ajaxline.com — "Lazy inheritance" is a design pattern used in JavaScript computer programming. It designates a postponed linking of an object with it's prototype (class) until it is needed. If used properly, such approach may increase efficiency, simplicity and flexibility of OOP based code written using JavaScript.
Unlike of "classical" approach, it supports a "Lazy" way of
inheritance implementation, since reference to parent class is invoked only at the moment of object instance creation.
Basically, it's possible to say that instances of objects in such approach are created in "mixed" mode – on first invocation, an appropriate factory is used to modify object constructor prototype which is later used for subsequent object instances creation. Moreover, since "Lazy inheritance" is called only once at the moment
of first object instance creation, it becomes possible to combine process of class prototype creation with resolving necessary dependencies of that class. In other words, the process of prototype construction also allows loading scripts (if ones were not loaded before) which particular class depends on.
Such approach to inheritance support has the following benefits:
* "Lazy inheritance" has the same benefits as classical JavaScript prototype features;
* It is not necessary to maintain proper order of script files
declaration;
* In most cases, HTML page is loaded faster since there are no objects created during page initialization and since some scripts could be loaded only at the moment in which they are actually necessary (they are necessary if the caller code during it's execution really creates instances of corresponding classes);
* Dependencies are declared in more explicit way and class depends only on concrete scripts; Moreover, it's not necessary to artificially group particular scripts into "modules" and define dependencies between such "modules";
* If lazy mode of scripts loading is used, only necessary scripts (which are actually required for application functionality) will be loaded. If, for example, some HTML page may operate in different modes, like "read-write" and "read-only", for every mode required scripts will be loaded and this will be performed automatically without manual script loading optimization.
LINKS
http://ajaxline.com/node/367 - The article
http://sourceforge.net/projects/jsiner - The open source implementation read more...
add a comment
|
category: AJAX | Views: 0
|
|
tags:
OOP, JavaScript, AJAX | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
yousefla
1 year, 4 months ago
mycsharpcorner.com — Someone asked how long will it take them to learn C++, then how long will it take to learn OOP concepts, so I thought I share my answer here.
OOP is a different concept of programming where you look at pieces of code as objects that have properties & behavior, rather than lines of code that execute one after the other (like in structured programming). There are many concepts to Object Oriented programming, but you might want to just keep in mind that read more...
add a comment
|
category: C# | Views: 2
|
|
tags:
OOP, C# | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 1 year, 9 months ago, submitted by
ehoff
1 year, 9 months ago
evanhoff.com — This short article may challenge your current understanding of one of the fundamentals of OOP. Do you know the limitations of the private and protected access modifiers? You may be surprised about some of the subtle nuances that are often overlooked. Read on for details. read more...
|
|
tags:
AccessModifiers, OOP | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 1 year, 9 months ago, submitted by
wwb_99
1 year, 9 months ago
codebetter.com — Peter Gekko gives an excellent intro to OOP in Javascript which actually makes sense. read more...
add a comment
|
category: ASP.NET | Views: 0
|
|
tags:
OOP, JavaScript | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
mikeon
2 years, 2 months ago
mikeoff.blogspot.com — A short article presenting few of my thoughts on validating input parameters and throwing exceptions. read more...
|
|
tags:
OOP, Mikeon, BestPractice | tag it
Everyones tags: | Your tags: | |
|
|
|
|

Sponsored Link: www.carlist.ie
Ads via The Lounge
|