active questions tagged objects - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T08:55:16Zhttp://stackoverflow.com/feeds/tag/objectshttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1811615/how-to-share-variables-among-libraries-in-delphi-20090How to share variables among libraries in Delphi 2009?Billiardo Aragorn2009-11-28T04:57:23Z2009-11-28T06:27:03Z
<p>Hi dudes, I'm trying to divide my monolithic, Delphi-Win32 app in libraries, so I get some questions around how to share global variables and object among my libraries using Delphi 2009. For example, I have 3 global objects (derived from TObject): for user info, for current session info, and for storing the active database connection and managing operations with this database. My libraries require to work with these objects. Moreover certain libraries would give an object derived from TForm to be hosted for another parent control into the main form. Every object derived from TForm passed to main form has its own methods and properties, that is, their classes are different each other. </p>
<p>I'm thinking to put the global objects into a separate library but I guess that it would make things more difficult, but consider it, please.</p>
<p>How to get to work this situation? </p>
<p>One question more, which is better to use: static or dynamic loading for libraries?
Can you recommend some books or sites to learn more about this?</p>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/1808141/synchronizing-on-two-or-more-objects-java2Synchronizing on two or more objects (Java)Azimuth2009-11-27T11:10:55Z2009-11-28T01:46:40Z
<p>I have code similar to following: </p>
<pre><code>public class Cache{
private final Object lock = new Object();
private HashMap<Integer, TreeMap<Long, Integer>> cache =
new HashMap<Integer, TreeMap<Long, Integer>>();
private AtomicLong FREESPACE = new AtomicLong(102400);
private void putInCache(TreeMap<Long, Integer> tempMap, int fileNr){
int length; //holds the length of data in tempMap
synchronized(lock){
if(checkFreeSpace(length)){
cache.get(fileNr).putAll(tmpMap);
FREESPACE.getAndAdd(-length);
}
}
}
private boolean checkFreeSpace(int length){
while(FREESPACE.get() < length && thereIsSomethingToDelete()){
// deleteSomething returns the length of deleted data or 0 if
// it could not delete anything
FREESPACE.getAndAdd(deleteSomething(length));
}
if(FREESPACE.get() < length) return true;
return false;
}
}
</code></pre>
<p><code>putInCache</code> is called by about 139 threads a second. Can I be sure that these two methods will synchronize on both <code>cache</code> and <code>FREESPACE</code>? Also, is <code>checkFreeSpace()</code> multithread-safe i.e can I be sure that there will be only one invocation of this method at a time? Can the "multithread-safety" of this code be improved?</p>
http://stackoverflow.com/questions/1803982/how-to-tell-difference-between-python-class-and-object0How to tell difference between python class and object? [closed]mrdobolina2009-11-26T14:28:09Z2009-11-26T14:37:54Z
<blockquote>
<p><strong>Possible Duplicate:</strong><br>
<a href="http://stackoverflow.com/questions/1802480/how-to-identiy-whether-a-variable-is-a-class-or-an-object">How to identiy whether a variable is a class or an object</a> </p>
</blockquote>
<p>I have a function which accepts 'things' which it calls.</p>
<pre><code>def run_it(thingy):
result = thingy(something)
</code></pre>
<p>However, I'd like <code>run_it()</code> to accept both classes and objects/functions, and if it is a class, instantiate it first:</p>
<pre><code>def run_it(thingy):
if it_is_a_class:
instance = thingy(something)
result = instance()
else:
result = thingy(something)
class Thingy1(object):
def __init__(self, something):
self.something = something
def __call__(self):
print self.something
class Thingy2(object):
def __call__(self. something):
print something
# First example, call with class:
result = run_it(Thingy1)
# Second example, call with object:
thingy = Thingy2()
result = run_it(thingy)
</code></pre>
<p>How do I implement <code>it_is_a_class</code> in the <code>run_it()</code> function?</p>
http://stackoverflow.com/questions/1802962/overriding-a-prototype-js-method0Overriding a prototype.js methodHippyjim2009-11-26T10:46:23Z2009-11-26T11:51:52Z
<p>I'm attempting to override the Form.Element.disable() method in PrototypeJS so that it adds a custom class to disabled form elements.</p>
<p>I've added:</p>
<pre><code>Form.Element.disable = function(element) {
element = $(element);
element.blur();
element.disabled = true;
element.addClassName("disabled");
return element;}
</code></pre>
<p>to the page after loading prototype.js - this works if called directly eg</p>
<pre><code>Form.Element.disable("myInputBox");
</code></pre>
<p>But the original PrototypeJS method is used if I call</p>
<pre><code>$("myInputBox").disable();
</code></pre>
<p>I know it's something to do with the "scope" in which I'm defining it - I'm effectively creating a new instance of the disable() method, but I have no idea how to shift the scope so that it replaces the original PrototypeJS version.</p>
<p>Where am I going wrong?</p>
http://stackoverflow.com/questions/1801289/why-is-this-jtext-panl-giving-me-amemory-address0Why is this JText panl giving me amemory address? Size_J2009-11-26T02:47:42Z2009-11-26T02:59:30Z
<p>This is an undo feature button on a calculator that I am writing. undo is the button Status is a class that holds my status. listOfStates is an ArrayList of Status. displayBox is a object of JTextFeild. What I do not under stand is that when I display previousState in the text box I get something like: Status@11dc088. I know I am missing casting something here. Thanks for any help. </p>
<pre><code>if(e.getSource() == undo)
{
Status previousState = (Status) listOfStates.get(listOfStates.size()- 1);
displayBox.setText(" ");
displayBox.setText(displayBox.getText() + previousState);
System.out.println(previousState);
}
</code></pre>
http://stackoverflow.com/questions/1792030/parsing-an-object-into-a-string1Parsing an Object into a StringSameera02009-11-24T18:36:43Z2009-11-24T19:10:07Z
<p>Hi there I am looking to parse an Object I have into a String so that I can enter it's value into a textfield. Here is a little snippet.</p>
<p>TFname is the name of the textfield</p>
<pre><code>Object value = list.getSelectedValues();
TFname.setText(parseObject(value)); //-- Here I pick up an error
</code></pre>
<p>Where I pick up the error, I know it's because this isn't how you parse an object but I was wondering if anyone knew how I would go about doing it properly.</p>
<p>If anyone could help I would be very grateful.</p>
http://stackoverflow.com/questions/1789368/3rd-party-server-3rd-party-api-unmanaged-c-managed-wrapper-database03rd Party Server -> 3rd Party API (unmanaged c++) -> Managed Wrapper -> Database : Can Linq help me simplify my code?CxDoo2009-11-24T11:08:19Z2009-11-24T11:08:19Z
<p>I maintain a fairly complex infrastructure consisting of a number of setups like the following:</p>
<ol>
<li>3rd party application server with its built-in database</li>
<li><p>3rd party unmanaged c++ API library which exposes methods to query and/or receive updates from the server; also contains data structure definitions</p></li>
<li><p>My managed wrapper for the library; exposes lib functionality to in-house .NET applications that need to communicate with the server.</p></li>
<li><p>My c# class library containing byte-for-byte equivalent data structure definitions from point 1.</p></li>
<li><p>My bridge application which synchronizes server data in real time with my database (sql server)</p></li>
<li><p>My data access layer library</p></li>
<li><p>Database</p></li>
</ol>
<p>The part from 1 to 5 is sorted out in a satisfying way as I use generic UnmanagedToManaged (and vice versa) methods for marshaling data from wrapper to API lib; the only thing I need to keep updated is my library from point 4. against definitions from point 2. </p>
<p>Since the structures are of fixed size (the only thing changing is reduction of reserved fields size and introduction of fields of equivalent size) I don't have marshaling issues, nor version issues when my code doesn't match the latest 3rd party update.</p>
<p>The problem begins at point 5. I have to manually define the tables in the database, field by field, then autogenerate the stored procedures and use either a framework like dOOdads for access, or do it manually.</p>
<p>This is all done using VS 2005 and .NET 2.0.</p>
<p>Currently I am evaluating VS 2010 Beta & .NET 4 for use in future projects and as an important exercise would like to reimplement this setup using LINQ.</p>
<p>Ideally, I would like to manually deal with data structures only at two points:</p>
<p>a. Class library from point 4.</p>
<p>b. Mapping file (or whatever) where I would tweak the sql tables, data types, constraints and relations autogenerated from c# data structures.</p>
<p>My question is - can I realistically expect something like this? Would there be a significant decrease in need to write boilerplate code or am I better off continuing the way I do things now?</p>
http://stackoverflow.com/questions/1781107/object-return-needs-to-wait-until-json-request-is-finished2Object return needs to wait until JSON request is finishedVibhu2009-11-23T04:34:25Z2009-11-23T04:40:43Z
<p>I'm trying to write a somewhat generic method for retrieving data either from the browser cache if it's available, or a JSON request if it's not. Right now, all I want to do is be able to give my data.get method an id, and return the correct results. This works perfectly fine - console logs the new object being retrieved via JSON the first time, and from memory the second time, but if you run this code you'll notice the blank object is returned a millisecond before the JSON, so it doesn't quite work as expected. I've tried setting intervals and callbacks and everything, but I can't figure out how to make it more synchronous. I feel like my fundamental assumption is wrong. I'm a newbie to OOP javascript. Also, I'm using jQuery for the json request. You can't just return the object in the callback of the getJson function either, since the other one will execute first.</p>
<p>Here is the contents of get.json:</p>
<p>{ "id" : 1, "name" : "hello" }</p>
<p>and the script/markup:</p>
<p>var entries = [];</p>
<pre><code> function Data(){}
Data.prototype.get = function(id){
var object = {}, length = entries.length, success = false;
for (var i = 0; i < length; i++) {
if (entries[i].id == id) {
object = entries[i];
i = length;
console.log("From browser: " + object.name);
success = true;
}
}
if (success == false) {
$.getJSON("get.json", function(data){
entries.push(data);
object = data;
console.log("Newly fetched: " + object.name);
});
}
return object;
}
$(function(){
var data = new Data();
data.get(1);
console.log((data.get(1).name);
});
</code></pre>
http://stackoverflow.com/questions/1181891/change-properties-of-an-unknown-object-in-vb-net1Change properties of an unknown object in VB.NETblake2009-07-25T11:19:31Z2009-11-22T14:53:46Z
<p>I have a sub that handles when 14 ComboBoxes have their Index changed. I am able to cast the sender of the event, and obtain properties from there. However, after that, I want to be able to change the properties of the actual sender, rather than the cast one. How would I do this?</p>
<p>Current code:</p>
<pre><code>Private Sub ComboBoxIndexChange(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ComboBox1.SelectedIndexChanged, ComboBox2.SelectedIndexChanged [etc]
Dim myComboBox As ComboBox = sender
Select Case myComboBox.Text
Case "Will"
Me.Controls(myComboBox.Name).Text = "555-555-555"
Case "Bob"
Me.Controls(myComboBox.Name).Text = "555-124-1234"
[etc]
End Select
End Sub
End Class
</code></pre>
<p>As you can see, I am currently trying to use</p>
<pre><code>Me.Controls(myComboBox.Name).Text
</code></pre>
<p>But I get the error: Object reference not set to an instance of an object.</p>
<p>What can I do?</p>
http://stackoverflow.com/questions/1776327/adding-variables-to-ar-object-2Adding Variables to AR ObjectTom2009-11-21T18:36:50Z2009-11-21T19:16:17Z
<p>How can I add a variable to a set of objects returned by ActiveRecord? I've looked around and none of the methods I've seen seem to work.</p>
<p>Thanks in advance!</p>
http://stackoverflow.com/questions/561702/in-javascript-how-would-you-build-a-method-that-compares-value-a-with-value-b0In javascript, how would you build a method that compares value A with value Bsnz32009-02-18T15:59:50Z2009-11-21T19:00:03Z
<p>I have an array of objects, something like this:</p>
<pre><code>var myArray = [
{ 'name' : 'some name', id: 23131, 'has' : ['dogs'] },
{ 'name' : 'some name 2', id: 8678, 'has' : ['dogs', 'cats'] },
{ 'name' : 'some name 3', id: 2125 , 'has' : ['donkeys', 'goats']},
{ 'name' : 'some name 4', id: 90867, 'has' : ['parrots', 'treasure'] },
{ 'name' : 'some name 5', id: 435458, 'has' : undefined },
];
</code></pre>
<p>And I want to retrieve specific elements that match certain criteria. For example, a person whose name contains number 5, and id is 435458. Or a person who has a parrot or a goat, or both.</p>
<p>The method I'm trying to build takes two arguments, value A and value B. Value A is an object, like <code>{ 'name' : '5' }</code> or <code>{ 'name' : /5/ }</code> or <code>{ 'name' : 5 }</code>or { 'has' : 'goats' }, and value B is the object to match against, i.e. <code>myArray</code>.</p>
<p>The method is quickly becoming quite complex and I feel that my code is not quite as effective and efficient as it could.</p>
<p>I think the best way to achieve this is to loop through the objects and arrays that are passed and found (<code>myArray</code>, <code>has</code> array), and call it self until there only two string/number/regexp values to be compared against. But I'm not quite sure on how to best achieve this. Or is this not the best way to go? Also, speed is an important success criterion.</p>
<p>Cheers</p>
<p>Edit: <a href="http://jsbin.com/ediye/edit" rel="nofollow">http://jsbin.com/ediye/edit</a> contains the function I'm using now, and I think it works as described above, but its quite slow for large data sets.</p>
http://stackoverflow.com/questions/1776252/value-is-the-variable-name-instead-of-the-contents-of-the-variable0Value is the variable name instead of the contents of the variableDan Peddle2009-11-21T18:12:29Z2009-11-21T18:28:49Z
<p>I'm trying to initialise some data values dynamically inside a javascript object, but when I create a concatenated string to pass along, the actual key stored is the variable name, instead of the value inside it.</p>
<p>Example:</p>
<pre><code>projects.init = function(){
for (var i = this.numBoxes - 1; i >= 0; i--){
var toInject = "item"+i;
this.datas[i] = {toInject:"testdata"};
};
}
</code></pre>
<p>Then after calling init, the values inside projects.datas look like.. toInject "testdata", instead of being "item1"..."item2".... what am I doing wrong..?</p>
http://stackoverflow.com/questions/1771803/selecting-objects-contined-in-an-arraylist-c0Selecting objects contined in an Arraylist (c#)Tumble2009-11-20T16:56:20Z2009-11-20T17:37:55Z
<p>Im working on a project for homework where I have an Arraylist containing objects of 5 strings. I know how to select items of the array list (using an index value) but not how to access the objects strings. Any help would be great (I'm not trying to cheat but its getting frustrating that I cant't sort it out. I hope this snippets make it obvious what i'm trying to do.</p>
<p>private ArrayList myComponents;</p>
<p>private int listIndex = 0;</p>
<p>myComponents = new ArrayList(); //Arraylist to hold catalog data</p>
<p>equipment = new Equipment(itemName, itemType, itemDetails, itemMaintenance, itemId);</p>
<p>myComponents.Add(equipment);</p>
<p>// class file is called Equipment.cs</p>
<p>//I know normally that equipment without the arraylist this would work: equipment.getitemName();
but combining with the arraylist is being problematic.</p>
http://stackoverflow.com/questions/1770787/r-access-field-values2R: access field valuesKarl2009-11-20T14:29:55Z2009-11-20T15:17:09Z
<p>Hi</p>
<p>I would like to know how I can access the individual fields contained in an R object. Or, more precisely, how to get R to tell me how.</p>
<p>For example, if I run the following code:</p>
<pre><code>dx.ct <- ur.df(dat1[,'dx'], lags=3, type='trend')
summary(dx.ct)
</code></pre>
<p>then I get this output:</p>
<pre><code>###############################################
# Augmented Dickey-Fuller Test Unit Root Test #
###############################################
Test regression trend
Call:
lm(formula = z.diff ~ z.lag.1 + 1 + tt + z.diff.lag)
Residuals:
Min 1Q Median 3Q Max
-0.46876 -0.24506 0.02420 0.15752 0.66688
Coefficients:
Estimate Std. Error t value Pr(>|t|)
(Intercept) 1.099231 0.561377 1.958 0.0606 .
z.lag.1 -0.239438 0.141093 -1.697 0.1012
tt -0.019831 0.007799 -2.543 0.0170 *
z.diff.lag1 -0.306326 0.193001 -1.587 0.1241
z.diff.lag2 -0.214229 0.186135 -1.151 0.2599
z.diff.lag3 -0.223433 0.179040 -1.248 0.2228
---
Signif. codes: 0 ‘***’ 0.001 ‘**’ 0.01 ‘*’ 0.05 ‘.’ 0.1 ‘ ’ 1
Residual standard error: 0.3131 on 27 degrees of freedom
Multiple R-squared: 0.3326, Adjusted R-squared: 0.209
F-statistic: 2.691 on 5 and 27 DF, p-value: 0.04244
Value of test-statistic is: -1.697 2.4118 3.2358
Critical values for test statistics:
1pct 5pct 10pct
tau3 -4.15 -3.50 -3.18
phi2 7.02 5.13 4.31
phi3 9.31 6.73 5.61
</code></pre>
<p>So, I know that I should be able to access all of the values above individually, I don't know how to point to them. Is there some way to ask R to show me how they are stored?</p>
<p>I am thinking along the lines of:</p>
<pre><code>showobjects(summary(dx.ct))
</code></pre>
<p>And then it outputs</p>
<pre><code>$formula
$residuals
$coefficients
etc.
</code></pre>
<p>and then I can do</p>
<pre><code>showobjects(summary(dx.ct)$residuals)
</code></pre>
<p>which then outputs</p>
<pre><code>$min
$1Q
$median
etc.
</code></pre>
<p>Thanks<br>
Karl</p>
http://stackoverflow.com/questions/1630474/assigning-variables-to-objects-in-javascript0Assigning variables to objects in JavaScriptToby2009-10-27T12:29:07Z2009-11-19T19:17:46Z
<p>Hey there,</p>
<p>I am using the following method to basically create a JSON string.</p>
<pre><code>var saveData = {};
saveData.a = 2;
saveData.c = 1;
</code></pre>
<p>However the .a and .c don't cut it for what I need to do, I need to replace these with strings. So something like..</p>
<pre><code>var name = 'wibble';
saveData.name = 2;
</code></pre>
<p>This would get accessed with </p>
<pre><code>saveData.wibble
</code></pre>
<p>Does anyone know how this could be achieved?</p>
http://stackoverflow.com/questions/1736556/what-are-the-different-objects-in-this-situation-1What are the different objects in this situation?Phenom2009-11-15T04:25:23Z2009-11-19T01:17:21Z
<p>A group diary and time management system is intended to support the timetabling of
meetings and appointments across a group of coworkers. When an appointment is to be
made that involves a number of people, the system finds a common slot in each of their
diaries and arranges the appointment for that time. If no common slots are available, it
interacts with the user to rearrange his or her personal diary to make room for the
appointment.</p>
http://stackoverflow.com/questions/1757528/storing-jquery-selectors-in-an-object0storing jquery selectors in an objectjoe-bbb2009-11-18T17:08:01Z2009-11-18T20:45:56Z
<p>The following does not seem to work -</p>
<pre><code>IT.TopSlide = {
selectors : {
div : $('#top-slide'),
signup : $('#top-slide #signup'),
login : $('#top-slide #login'),
signup_trigger : $('#header .top-slide-triggers a.signup-trigger'),
login_trigger : $('#header .top-slide-triggers a.login-trigger'),
close : $('a.close')
},
init : function (){
var selectors = IT.TopSlide.selectors;
selectors.div.hide();
selectors.login.hide();
}
};
$(document).ready(function () {
IT.TopSlide.init();
});
</code></pre>
<p><code>selectors.div</code> returns an empty array. Bare in mind that for each namespace I want to have the first item as a selectors storer that I can access with IT.TopSlide.selectors from any other object. From within the namespace I would like to define it as a var - <code>var selectors = IT.TopSlide.selectors;</code> so I can access the <strong>cached</strong> selectors.</p>
http://stackoverflow.com/questions/1757161/why-is-this-not-updating-to-refer-to-a-new-object0Why is 'this' not updating to refer to a new object?wheresrhys2009-11-18T16:16:11Z2009-11-18T16:32:57Z
<p>I'm writing an online game which allows a user to progress from one puzzle to the next, and if the user makes mistakes, each puzzle has a start again button to allow the user to start just that puzzle from scratch. A simplified version of the code's structure is below:</p>
<pre><code>function puzzle(generator) {
this.init = function() {
this.generator = generator;
...
this.addListeners();
}
//fires when the puzzle is solved
this.completed = function() {
window.theSequence.next();
}
this.empty = function() {
//get rid of all dom elements, all event listeners, and set all object properties to null;
}
this.addListeners = function() {
$('#startOver').click(function() {
window.thePuzzle.empty();
window.thePuzzle.init();
});
}
this.init();
}
function puzzleSequence(sequenceGenerator) {
this.init = function() {
//load the first puzzle
window.thePuzzle = new puzzle({generating json});
}
this.next = function() {
//destroy the last puzzle and create a new one
window.thePuzzle.empty();
window.thePuzzle = new puzzle({2nd generating json});
}
}
window.theSequence = new puzzleSequence({a sequence generator JSON});
</code></pre>
<p>The problem I have is that if the user has progressed to the second puzzle, if they click start over it loads the first puzzle rather than the second. After a bit of debugging I've worked out that 'this', when used in methods by the second puzzle, for some reason still holds a reference to the first puzzle, but 'window.thePuzzle' - which should be the same as this - correctly refers to the second puzzle.</p>
<p>Why is 'this' persisting in referrring to the first one?</p>
<p>Let me know if you need more code samples</p>
http://stackoverflow.com/questions/1704618/what-is-the-difference-between-var-thing-and-function-thing-in-javascript3What is the difference between var thing and function thing() in JavaScript?FurtiveFelon2009-11-09T23:15:50Z2009-11-17T03:07:47Z
<p>I was just wondering about the difference between the following declaration of JavaScript objects. Specifically, the difference between thing object literal and thing1 object from thing class. </p>
<h3>Code:</h3>
<pre><code>var thing = {
sanity:0,
init:function(){
//code
},
send:function(){
//code
}
}
function thing(){
this.sanity = 0;
this.init = function(){
//code
};
this.send = function(){
//code
};
}
thing1 = new thing();
</code></pre>
http://stackoverflow.com/questions/1737154/iphone-how-to-make-objects-flying-around-in-a-view0[iphone] How to make objects flying around in a viewjacky2009-11-15T10:08:44Z2009-11-15T18:21:21Z
<p>Hey,</p>
<p>How is it possible to let some objects fly around and bumb at the end of the view and collide on each other.</p>
<p>The second step would add acceleration of the objects by shaking.</p>
<p>I haven't found a tutorial yet or some step to begin at.</p>
<p>thanks a lot for your help :)</p>
<p>Heres a picter of what i image(only a still)</p>
<p><a href="http://picfront.org/d/ZdSvK9G8D/flying%5Fcircles.jpg" rel="nofollow">http://picfront.org/d/ZdSvK9G8D/flying%5Fcircles.jpg</a></p>
http://stackoverflow.com/questions/1736668/what-are-the-objects-in-this-situation-1What are the objects in this situation?Phenom2009-11-15T05:18:20Z2009-11-15T05:27:59Z
<p>A petrol (gas) station is to be set up for fully automated operation. Drivers swipe their
credit card through a reader connected to the pump; the card is verified by communication
with a credit company computer; and a fuel limit is established. The driver may then take
the fuel required. When fuel delivery is complete and the pump hose is returned to its
holster, the driver's credit card account is debited with the cost of the fuel taken. The
credit card is returned after debiting. If the card is invalid, the pump returns it before fuel is dispensed.</p>
http://stackoverflow.com/questions/409969/polymorphism-define-in-just-two-sentences7Polymorphism - Define In Just Two SentencesMark Testa2009-01-03T22:06:40Z2009-11-14T17:36:40Z
<p>I've looked at other definitions and explanations and none of them satisfy me. I want to see if anybody can define polymorphism in at most two sentences without using any code or examples. I don't want to hear 'So you have a person/car/can opener...' or how the word is derived (nobody is impressed that you know what poly and morph means). If you have a very good grasp of what polymorphism is and have a good command of English than you should be able to answer this question in a short, albeit dense, definition. If your definition accurately defines polymorphism but is so dense that it requires a couple of read overs, then that's exactly what I am looking for.</p>
<p>Why only two sentences? Because a definition is short and intelligent. An explanation is long and contains examples and code. Look here for explanations (the answer on those pages are not satisfactory for my question):</p>
<p><a href="http://stackoverflow.com/questions/154577/polymorphism-vs-overriding-vs-overloading">http://stackoverflow.com/questions/154577/polymorphism-vs-overriding-vs-overloading</a> <br>
<a href="http://stackoverflow.com/questions/210460/try-to-describe-polymorphism-as-easy-as-you-can">http://stackoverflow.com/questions/210460/try-to-describe-polymorphism-as-easy-as-you-can</a></p>
<p>Why am I asking this question? Because I was asked the same question and I found I was unable to come up with a satisfactory definition (by my standards, which are pretty high). I want to see if any of the great minds on this site can do it.</p>
<p>If you really can't make the two sentence requirement (it's a difficult subject to define) then it's fine if you go over. The idea is to have a definition that actually defines what polymorphism is and doesn't explain what it does or how to use it (get the difference?).</p>
http://stackoverflow.com/questions/571327/excel-vba-object-constructor-and-destructor1Excel VBA object constructor and destructornotnot2009-02-20T21:37:37Z2009-11-13T10:31:33Z
<p>I need to make some custom objects in VBA that will need to reference each other and I have a some issues.</p>
<p>First - how do object constructors work in VBA? Are there constructors?</p>
<p>Second - are there destructors? How does VBA handle the end of the object lifecycle? If I have an object that references others (and this is their only reference), then can I set it to Nothing and be done with it or could that produce memeory leaks?</p>
<p>This quasi-OO stuff is just a little bit irritating.</p>
http://stackoverflow.com/questions/1709684/out-of-scope-nsmutablearray-error0out of scope - NSMutableArray errorOkiedoke2009-11-10T17:25:39Z2009-11-12T18:37:56Z
<pre><code>data = [[NSMutableArray arrayWithCapacity:numISF]init];
count = 0;
while (count <= numISF)
{
[data addObject:[[rouge_col_data alloc]init]];
count++;
}
</code></pre>
<p>When I step through the while loop, each object in the data array is 'out of scope'</p>
<p>rouge col data 's implementation looks like this..</p>
<pre><code>@implementation rouge_col_data
@synthesize pos;
@synthesize state;
-(id) init {
self = [super init];
return self;
}
@end
</code></pre>
<p>Most tutorials I could find only use NSStrings for objects in these kinds of arrays. </p>
<p>-Thanks
Alex E</p>
<p>EDIT</p>
<pre><code>data = [[[NSMutableArray alloc] initWithCapacity:numISF]retain];
//data = [[NSMutableArray arrayWithCapacity:numISF] retain];
count = 0;
while (count < numISF)
{
[data addObject:[[[rouge_col_data alloc]init]autorelease]];
count++;
}
</code></pre>
<p>still the same error, even when switching the 'data = '.</p>
http://stackoverflow.com/questions/1722528/databinding-property-of-multiple-objects0Databinding property of multiple objectsstfx2009-11-12T14:23:34Z2009-11-12T14:46:29Z
<p>Hello dear programers,</p>
<p>how u doin? I have a problem. I want to bind multiple objects to a single textbox for example. Lets say I have a list with many tasks. Each task contains a title.</p>
<pre><code>public class Task
{
public string Title { get; set; }
[...]
}
</code></pre>
<p>Now I want to select two tasks in a listbox. If the title of both tasks are the same I want the textbox to display the title. If they are different it should display nothing.</p>
<p>If the user changes the value the title of both tasks should be changed to the new value.</p>
<p>I created a new property 'Title' so far which is binded in XAML. There are 2 problems. </p>
<ol>
<li><p>If I set the DataContext of the grid the program reads the 'Title' only once. If set the datacontext to null and then to the Task class again it works (ugly though).</p></li>
<li><p>If I change the title it wont be changed instantly in the listbox. Only if the listbox reads the list of tasks again it will be displayed properly.</p>
<pre><code>public string Title
{
get
{
string title = Tasks[0].Title;
<pre><code> for (int i = 1; i &lt; Tasks.Count; i++)
{
if (title != Tasks[i].Title)
return "";
}
return title;
}
set
{
foreach (Task task in Tasks)
task.Title = value;
}
</code></pre>
}
</code></pre></li>
</ol>
<p>Thank you for your help</p>
<p>Greetings
stfx</p>
http://stackoverflow.com/questions/1712790/asp-net-and-objects0ASP.NET and Objectsantoinne852009-11-11T03:19:58Z2009-11-11T04:55:24Z
<p>I've been tasked with a project that requires me to convert a quote for a set of products that is displayed online into a particular file format for import into a third party application. All of the information I need is stored in a database that I can easily access. </p>
<p>Unfortunately, I absolutely have to offer this as a web interface and they want it to be a natural extension of their current ASP.NET product.</p>
<p>Even more unfortunate is that I've had no prior experience in ASP.NET and, as a result, I can't seem to phrase my question in a way that gets the desire result in search engines. I guess I'm behind on the proper terminology.</p>
<p>What I'd like to do is to take the data in the database and read it into objects that I've created in C# that hold their particular necessary attributes. For instance:</p>
<p>The QUOTE class contains a list of ITEM attributes.
The ITEM class contains a list of MODIFICATIONs.</p>
<p>I could then just loop over all the line items and output the necessary information to perform the task.</p>
<p>I'm familiar with Ruby on Rails and how I can set up objects, work on them, and then reference them in the view, but I'm completely lost in ASP.NET.</p>
<p>So, the short version is this:</p>
<p>What am I trying to do in terms of ASP.NET terminology so that I can research how to do it?</p>
<p>Is it even possible?</p>
http://stackoverflow.com/questions/1711178/getting-variable-object-elements-and-values-in-javascript0getting variable/object elements and values in javascriptpedalpete2009-11-10T21:05:48Z2009-11-10T21:39:51Z
<p>I'm not sure if I'm using the correct terminology, so please correct me if I'm not. </p>
<p>I've got a javascript variable which holds a group of values like this </p>
<pre>
var my_variables = {
first_var: 'starting',
second_var: 2,
third_var: 'continue',
forth_var: 'end'
}
</pre>
<p>Now I'm trying to get these variables in my script, but I don't want to have to check for each one.
Right now i'm doing this</p>
<pre>
if(my_variables.first_var!=null){
query=query+'&first_var='+my_variables.first_var;
}
if(my_variables.second_var!=null){
query=query+'&second_var='+my_variables.second_var;
}...
</pre>
<p>I'm hoping there is a simple way to recursively go through the object, but I haven't been able to find how to do that.
Something like</p>
<pre>
foreach(my_variables.??? as varName){
query=query+'&'+varName+'='+my_variables.varName;
}
</pre>
http://stackoverflow.com/questions/1702427/how-can-i-cache-instantiated-objects0How can I cache instantiated objects?Byron2009-11-09T17:17:00Z2009-11-09T18:21:03Z
<p>I used to have a situation where I hit the database a every time I needed information on an employee. Then I taught myself about data caching and have since cleared up that problem substantially. </p>
<p>Now, I'd like to take it to the next level. I'd like to reduce load times by caching my object instantiation. I'm not sure that I'm being clear, so I'll explain a little more. I have an employee object that (for example sake) has 50 properties. Some of those properties are generic lists of other related objects (such as a list of network assets belonging to that employee). So, when I instantiate an employee object for employee #30455, I don't have to hit the database (neccessarily) because that much is cached. </p>
<p>BUT, I do have to run down the property list, filling them with data from datarows from the cached dataset. I also have to populate those generic lists I chose to include at the head end. Seems like I should be able to cache that object so I don't have to do all of that over again. Thoughts?</p>
http://stackoverflow.com/questions/1697807/objective-c-messages-whats-the-right-way-to-read-it6Objective-C "messages" - what's the right way to read it?bobobobo2009-11-08T20:21:21Z2009-11-09T01:20:19Z
<p>You can declare a method in objective-c and name <b><em>each parameter twice</em></b>, basically.</p>
<p>I get the idea that this is powerful, but I'm not quite sure how to use it yet...</p>
<p>When John Greets Kelly:</p>
<p><code>[ p Greet:"John" toPerson:"Kelly" greetWith:"hey babe" ] ;</code></p>
<p>Something about it doesn't read naturally. I'm not sure if that's how an experienced objective-c programmer would write that "message".</p>
<p>Can someone explain the reason for two names for each parameter and possibly a more useful example of how this can be used effectively to put meaning in the program?</p>
<p>Also something bothers me and that is the <strong>name of the first parameter</strong> is basically the same as the name of the '<em>message</em>'. How do you resolve that in writing meaningful and understandable method/'message names'?</p>
<pre>
#import <Foundation/Foundation.h>
@interface Person : NSObject
{
}
-(void)Greet:(char*)from toPerson:(char*)to greetWith:(char*)greeting ;
@end
@implementation Person
-(void)Greet:(char*)from toPerson:(char*)to greetWith:(char*)greeting ;
{
printf( "%s says %s to %s\n", from, greeting, to ) ;
}
@end
int main (int argc, const char * argv[])
{
NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
Person * p = [ Person alloc ] ;
[ p Greet:"John" toPerson:"Kelly" greetWith:"hey babe" ] ;
[ p Greet:"Kelly" toPerson:"John" greetWith:"get bent" ] ;
[ p release ] ;
[pool drain];
return 0;
}
</pre>
http://stackoverflow.com/questions/1692933/what-is-an-abstract-data-type-in-object-oriented-programming3what is an abstract data type in object oriented programming?sevugarajan2009-11-07T12:48:08Z2009-11-07T17:19:00Z
<p>what is an abstract data type in object oriented programming? I gone through wiki.But i dint get cleared.Please make me clear</p>