Tagged Questions
In prototype-based languages, the prototype of an object is a set of properties which is inherited by all objects which are based on this object.
45
votes
19answers
24k views
Web UI prototyping tools
Can anyone recomend me a simple web UI prototyping tool,
so I could quicky prototype the look of a my web site.
I have tried to use MS Visio for this, but found it
very "user un-friendly".
What I ...
39
votes
3answers
4k views
Why are Perl 5's function prototypes bad?
In another question a member asserted "I would advice you not to use prototypes. They have their uses, but not for most cases and definitely not in this one."
Can anyone elaborate on why this might ...
31
votes
28answers
7k views
Suggested platform/tools for rapid game development and game prototyping
What platforms and tools should I use for rapid game development and prototyping?
Say that I have an idea for a simple game or a game mechanic that I want to try out, what are the best tools for ...
15
votes
2answers
366 views
Is this a bug with Perl's glob prototype?
For no particular reason, I was playing around with the glob prototype (*), and seeing what it would do when the argument is a defined subroutine.
Given the following code:
sub test (*) {print ...
12
votes
4answers
322 views
Achieving polymorphism in functional programming
I'm currently enjoying the transition from an object oriented language to a functional language. It's a breath of fresh air, and I'm finding myself much more productive than before.
However - there ...
11
votes
2answers
234 views
Trying to understand the point of prototypes in JavaScript
I realize this has been asked hundreds of times, however, I can't seem to grasp the concept of "why" prototypes in JavaScript are proper, as apposed to imitating classes (yes, I know JavaScript is a ...
11
votes
2answers
969 views
Understanding the difference between Object.create() and new SomeFunction() in JavaScript
I recently stumbled upon the Object.create() method in JavaScript, and am trying to deduce how it is different from creating a new instance of an object with 'new SomeFunction()', and when you would ...
11
votes
8answers
3k views
How to increase Zend Framework learning speed?
A preamble:
I've been using PHP for over 8 year every now and then, but never used a framework, only wrote scripts and addons.
Mostly I used code generators like CodeCharge Studio or custom code for ...
11
votes
3answers
736 views
Setting methods through prototype object or in constructor, difference?
Could you explain the difference between setting methods in the constructor and through prototype object? The following code shows these two ways of setting the methods - say_hello and say_bye both ...
10
votes
4answers
757 views
Advantages of using prototype, vs defining methods straight in the constructor?
I am wondering if there are any advantages of using any of these over the other, and which way should I go?
Constructor approach:
var Class = function () {
this.calc = function (a, b) {
...
9
votes
1answer
335 views
In JavaScript, why typeof Function.prototype is “function”, not “object” like other prototype objects?
<!DOCTYPE html>
<meta charset="utf-8">
<title>An HTML5 document</title>
<script>
console.log(typeof String.prototype); // object
console.log(typeof ...
9
votes
6answers
1k views
javascript prototype inheritance
This seems inconsistent, but probably is due to the fact that I'm new to javascript's prototype inheritance feature.
Basically, I have two base class properties, "list" and "name". I instantiate ...
9
votes
4answers
11k views
C# - How to access internal class from external assembly
Having an assembly which I cannot modify (vendor-supplied) which have a method returning an object type but is really of an internal type.
How can I access the fields and/or methods of the object ...
9
votes
5answers
7k views
Calling base method using javascript prototype
Is it possible to call the base method from a prototype method in javascript if it's been overridden?
MyClass = function(name){
this.name = name;
this.do = function(){ //do somthing };
};
...
8
votes
2answers
225 views
Native way to merge objects in Javascript
Javascript's Object doesn't have any native merge operation. If you have two objects, say
{a:1, b:2}
{c:3, d:4}
And want to get
{a:1, b:2, c:3, d:4}
As far as I know, you have to iterate ...
8
votes
2answers
654 views
What it the significance of the Javascript constructor property?
Trying to bend by head around Javascript's take on OO...and like many others running into confusion about the constructor property. In particular, what it's significance is as I can't seem to make it ...
8
votes
1answer
271 views
Javascript inheritance idea (part 2)
Okay, my first attempt at trying to explain what I was doing failed miserably. I'm basically copying Crockford's Object.create(), except with private variables.
If you look at the accepted answer ...
8
votes
5answers
3k views
Extending Number.prototype in javascript and the Math object?
I've always wondered why Javascript has the global Math object instead of giving numbers their own methods. Is there a good reason for it?
Also are there any drawbacks (other than efficiency) to ...
8
votes
3answers
935 views
prototypes versus classes
Steve Yegge recently posted an interesting blog post on what he calls the universal design pattern. In there he details using prototypes as a modelling tool, instead of classes. I like the way this ...
7
votes
1answer
56 views
What is object lifetime in javascript code that uses prototype inheritance?
I am currently reading 'Javascript Good Parts', and I came across the following paragraph
If we try to retrieve a property value from an object, and if the
object lacks the property name, then ...
7
votes
3answers
187 views
Why is the function prototype inside a different function block?
I am trying to understand C, by going through K&R. I have trouble understanding this code for two functions found in the book:
void qsort(int v[], int left, int right){
int i, last;
void ...
7
votes
3answers
288 views
Native prototypes vs $.extension()
At work, we use jQuery. Shortly after we started using it, I saw that a couple developers were adding functions to a file jquery-extensions.js. Inside, I found a whole bunch of methods added to $ that ...
7
votes
2answers
2k views
adding prototype to object literal
STORE = {
item : function() {
}
};
STORE.item.prototype.add = function() { alert('test 123'); };
STORE.item.add();
Been trying to figure out what's wrong with this quite a while. Why doesn't ...
6
votes
3answers
114 views
Changing the RegExp flags
So basically I wrote myself this function so as to be able to count the number of occurances of a Substring in a String:
String.prototype.numberOf = function(needle) {
var num = 0,
lastIndex ...
6
votes
1answer
96 views
Prototypal Inheritance. Whats wrong with this simple example?
function a (){
this.testing = 'testing';
}
function b (){
}
b.prototype = new a();
console.log(b.testing);
The console shows undefined, rather than 'testing'. ...
6
votes
1answer
522 views
Javascript inheritance problem when using prototypes - instances overwritten :(
I'm new to JavaScript programming and I am having a bit of a nightmare with inheritance. I am writing some code for Appcelerator Titanium and I have a base class called Slide2D that I wish to inherit ...
6
votes
1answer
292 views
Prototype inheritance, why an instance and not the prototype?
I've always wondered since i leared about prototype inheritance why you push an instance of the parent class into the child prototype and not the prototype itself?
var Animal = function(type){
...
6
votes
2answers
357 views
'this' is undefined in JavaScript class methods
I'm new to JavaScript. New as far as all I've really done with it is tweaked existing code and wrote small bits of jQuery.
Now I'm attempting to write a "class" with attributes and methods, but I'm ...
6
votes
1answer
264 views
Starting and stoping listeners in Mojo framework (WebOS)
I am starting WebOS dev and I have a doubt on where should I start and stop my listeners
?
I am reading this book but I couldn't find a clear explanation about this. In the sample the author set the ...
6
votes
2answers
179 views
The Benefits of JavaScript Prototype
I've been wondering about JavaScript's prototypal nature, and the benefits of it, and have come down to the following list :
1) Inheritance
cat.prototype = animal
2) Memory Efficiency
...
6
votes
3answers
521 views
what use does the javascript forEach method have (that map can't do)?
The only difference I see in map and foreach is that map is returning an array and foreach is not. However, I don't even understand the last line of the foreach method "func.call(scope, this[i], i, ...
6
votes
5answers
2k views
iPad HTML Prototype: Which JS Framework?
are there any Javascript frameworks (such as iUI) available for building iPad prototypes?
I have found nothing useful so far.
Best,
Stefan
6
votes
3answers
790 views
C++ Virtual Constructor, without clone()
I want to perform "deep copies" of an STL container of pointers to polymorphic classes.
I know about the Prototype design pattern, implemented by means of the Virtual Ctor Idiom, as explained in the ...
6
votes
2answers
292 views
How can I see a Javascript object's prototype chain?
Given the following code:
function a() {}
function b() {}
b.prototype = new a();
var b1 = new b();
We can stay that a has been added to b's prototype chain. Great. And, all the following are true:
...
6
votes
8answers
1k views
Can I construct a JavaScript object without using the new keyword?
Here is what I'd like to do:
function a() {
// ...
}
function b() {
// Some magic, return a new object.
}
var c = b();
c instanceof b // -> true
c instanceof a // -> true
b instanceof a ...
6
votes
4answers
2k views
Prototyping Object in Javascript breaks jQuery?
I have added a simple .js to my page that has some pretty mundane common-task sort of functions added to the Object and Array prototypes.
Through trial and error I've figured out that adding any ...
6
votes
2answers
133 views
What are prototypes in JavaScript?
What is a prototype for a JavaScript class? In other words, what is the difference between
Example.prototype.method {}
and
Example.method{}
when defining the Example class?
Edit: For those ...
6
votes
2answers
2k views
OpenCV K-Means (kmeans2)
I'm using Opencv's K-means implementation to cluster a large set of 8-dimensional vectors. They cluster fine, but I can't find any way to see the prototypes created by the clustering process. Is this ...
6
votes
4answers
6k views
Javascript - How to extend Array.prototype.push()?
I'm trying to extend the Array.push method so that using push will trigger a callback method, then perform the normal array function.
I'm not quite sure how to do this, but here's some code I've been ...
5
votes
2answers
164 views
Good design principles for prototypal inheritance? [closed]
Many object-oriented languages support prototypal inheritance rather than classical inheritance (JavaScript is perhaps the best modern example of this). While many resources exist for learning about ...
5
votes
1answer
132 views
EcmaScript 5 Google TechTalk - Scoping accident 1 example
I'm watching this lecture: http://www.youtube.com/watch?v=Kq4FpMe6cRs
// the speaker states that "'bar' is just some function
// that invokes whatever function is passed to it"
function bar(fn) {
...
5
votes
3answers
260 views
JS __proto__ inheritance replacement
I m using prototype inheritance as described in https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Object/Proto
function MyString(data){this.data = data ;}
MyString.prototype = { ...
5
votes
3answers
197 views
Is it possible to create a function with another prototype than Function.prototype?
I am working on a parser combinator library in JavaScript. For that I want to create functions that can be called like any other functions, but also have member functions that can be called in turn to ...
5
votes
1answer
140 views
Javascript Prototype Syntax
Is this valid Javascript syntax? What does it do?
Parser.prototype = {
// ...
get currentState() {
return this.state[this.state.length - 1];
},
// ...
}
See ...
5
votes
4answers
231 views
Javascript inheritance and method overriding
Assume I have a class like this:
function Widget() {
this.id = new Date().getTime();
// other fields
}
Widget.prototype = {
load: function(args) {
// do something
}
}
From ...
5
votes
2answers
168 views
What is the difference between assigning a function via “this” vs. “prototype”?
I am confused with these two type of adding a method to a function. Let me explain with an example.
var foo = function(){
this.bar = function(){alert('I am a method')}
}
foo.prototype.baz = ...
5
votes
3answers
800 views
Possible to have Abstract class in JS?
I have come across prototype inheritance in javascript.
What I wanted to achieve is an outline of methods, which when are inherited must be implemented/defined.
I would like to know if this is ...
5
votes
1answer
220 views
What is the initial value of a JavaScript function's prototype property?
I know that the prototype property of JavaScript function objects is copied to the internal [[Prototype]] property (a.k.a. __proto__) of objects instantiated by using the function as a constructor. ...
5
votes
2answers
567 views
IE8 bug in for-in JavaScript statement?
I think I've found a bug in IE's (IE8) handling for the for-in javascript statement. After several hours of boiling this down to a small example, it looks like IE specifically skips any property ...
5
votes
1answer
134 views
What are practical use cases of javascript prototype objects?
How are you using javascript prototype objects in your everyday code? I found it hard to either explain or find use cases for it.
Purpose driven examples and pseudo code examples would be great - ...