active questions tagged object-oriented - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T22:06:52Z http://stackoverflow.com/feeds/tag/object-oriented http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1923130/get-class-object-dict-without-special-attributes 0 Get class object __dict__ without special attributes desolat 2009-12-17T16:58:38Z 2009-12-17T19:11:12Z <p>For getting all the defined class attributes I try to go with</p> <pre><code>TheClass.__dict__ </code></pre> <p>but that also gives me the special attributes. Is there a way to get only the self-defined attributes or do I have to "clean" the dict myself?</p> http://stackoverflow.com/questions/1899299/phpoop-how-to-call-class-constructor-manually 3 PHP[OOP] - How to call class constructor manually? Saiful 2009-12-14T06:44:03Z 2009-12-15T10:14:41Z <p><strong>Please see the code bellow:</strong></p> <pre><code>01. class Test { 02. public function __construct($param1, $param2, $param3) { 03. echo $param1.$param2.$param3; 04. } 05. } 06. 07. $params = array('p1','p2','p3'); 08. 09. $ob = new Test; 10. 11. if(method_exists($ob,'__construct')) { 12. call_user_func_array(array($ob,'__construct'),$params); 13. } </code></pre> <p>Now, the problem is the <strong>constructor</strong> is called in line 09</p> <p>But i want to call it <strong>manually</strong> at line 11-13</p> <p>Is it possible? If then how? Any <strong>idea</strong> please?</p> http://stackoverflow.com/questions/1899855/two-methods-that-differ-only-in-linq-where-part-delegate 1 Two methods that differ only in LINQ where part - delegate? tomaszs2 2009-12-14T09:21:02Z 2009-12-14T11:23:25Z <p>I have a method:</p> <pre><code>internal List&lt;int&gt; GetOldDoctorsIDs { var Result = from DataRow doctor in DoctorTable.Rows where doctor.Age &gt; 30 select doctor.ID List&lt;int&gt; Doctors = new List&lt;int&gt;(); foreach (int id in Result) { //Register getting data Database.LogAccess("GetOldDoctorsID: " + id.ToString()); if (Database.AllowAccess(DoctorsTable, id)) { Doctors.Add(id); } } } </code></pre> <p>So this gets old doctors and does other things. Now I would like to create method GetExpensiveDoctors. It will look like this above, but in place of:</p> <pre><code>where doctor.Age &gt; 30 </code></pre> <p>I will have:</p> <pre><code>where doctor.Cost &gt; 30000 </code></pre> <p>How to create elegant, object oriented solution for this? Should I use delegate or other thing?</p> http://stackoverflow.com/questions/1896765/how-can-i-use-class -1 How can I use class? testkhan 2009-12-13T15:04:24Z 2009-12-13T15:17:09Z <p>I have a ready made php class. Now how can I use that class or implement it in my page?</p> http://stackoverflow.com/questions/1896128/comparing-two-inherited-objects-ruby 0 Comparing two inherited objects Ruby Dan Galipo 2009-12-13T10:39:10Z 2009-12-13T10:59:11Z <p>Hi,</p> <p>I have a base class which contains an equal? method. I've then inherited that object and want to use the equal? method in the super class as part of the equal? method in the sub class.</p> <pre><code> class A @a @b def equal?(in) if(@a == in.a &amp;&amp; @b == in.b) true else false end end end class B &lt; A @c def equal?(in) #This is the part im not sure of if(self.equal?in &amp;&amp; @c == in.c) true else false end end end </code></pre> <p>How do i reference the inherited A class object in the subclass so i can do the comparison?</p> <p>Cheers </p> <p>Dan</p> http://stackoverflow.com/questions/1894788/what-is-the-difference-between-object-oriented-langauges-and-non-object-oriented 1 What is the difference between object-oriented langauges and non object-oriented languages? azn_person 2009-12-12T21:39:57Z 2009-12-13T04:03:47Z <p>I am new to programing and I have been hearing a lot about how C is a non-object-oriented language and how java is an object-oriented language I was wondering what the difference was? </p> <p>Thank you.</p> http://stackoverflow.com/questions/1892201/how-can-i-complete-my-oop-homework-involving-datatypes-and-input-and-such -1 How can I complete my OOP homework involving datatypes and input and such? [closed] carlsam 2009-12-12T03:47:18Z 2009-12-12T08:00:23Z <p>I really dont know what to do with this program. A String that can have a value "Student", "Faculty", "Administrative Staff" Then determine if a string is a student then declare 3 double variables with values 90.5,85, 71. Compute the average and store the result to a double variable. If the string is a faculty, declare a string that prints "Your teaching load is" and declare an integer with a value 5 and prints it to the screen. If administrative staff variables that will accept double value such as earnings and deduction average to method 1 and the salary to method2 Main method should only be used for the conditions and printing on the screen. </p> <p>In Java Language. ;(</p> <p>Our teacher told us to do this at home during the christmas break. But the problem is i dont have computer at home and the school's computer laboratory will be closed at that time. I've just started with this code. dont know yet. </p> <pre><code>public class carlsam { public static double stud(double ave) { ave = ave; return ave; } public static int fac(int ave5) { ave5 = ave5; return ave5; } public static double admin1(double earning) { earning = earning; return earning; } public static double admin2(double deduction) { deduction = deduction; return deduction; } public static double admin3(double salary) { salary = salary; return salary; } public static void main (String[] args) { double ave1 = 90.5; int ave2 = 85; int ave3 = 71; System.out.println("student"); System.out.println("faculty"); System.out.println("Administrative staff"); System.out.println("ave1+ave2+ave3"); int val5 = 5; double allowance = 400.00; double otherEarnings = 1500.00; double sss = 200.00; double loan = 100.00; double tax = 200.00; String Str = "student"; if (Str == "student") { double valtotal = ave1 + ave2 + ave3; System.out.println("Total of Students = " + stud(valtotal)); } else if (Str == "faculty") { System.out.println("Your teaching Load is"); System.out.println(fac(val5)); } else if (Str == "administrative staff") { double earning = allowance + otherEarnings; double deduction = sss + loan + tax; double salary = (allowance + otherEarnings) - deduction; System.out.println("Earning= " + admin1(earning)); System.out.println("Deduction= " + admin2(deduction)); System.out.println("SALARY = " + admin3(salary)); } } } </code></pre> http://stackoverflow.com/questions/1884717/php-is-it-possible-to-retrieve-the-class-name-of-a-child-class 1 PHP: Is it possible to retrieve the class name of a child class? Andrew 2009-12-10T23:03:50Z 2009-12-10T23:25:14Z <pre><code>class Bob extends Person { //do some stuff } class Person { public function __construct() { //get the class name of the class that is extending this one //should be Bob } } </code></pre> <p>How can I get the class name of <code>Bob</code> from inside the constructor of the <code>Person</code> class?</p> http://stackoverflow.com/questions/1882673/object-oriented-execution 3 Object-Oriented Execution Dave Jarvis 2009-12-10T17:37:56Z 2009-12-10T18:30:21Z <p>Consider the following source snippets:</p> <p><strong>Snippet #1</strong></p> <pre><code> StoredProcedure sp = new StoredProcedure( "PROC_NAME", getConnection() ); sp.putParameter( "ID", getId() ); sp.execute(); </code></pre> <p><strong>Snippet #2</strong></p> <pre><code> StoredProcedure sp = new StoredProcedure( "PROC_NAME" ); sp.setConnection( getConnection() ); sp.putParameter( "ID", getId() ); sp.execute(); </code></pre> <p><strong>Snippet #3</strong></p> <pre><code> StoredProcedure sp = new StoredProcedure( "PROC_NAME" ); sp.putParameter( "ID", getId() ); sp.execute( getConnection() ); </code></pre> <p>Q: Which snippet is the most object-oriented, and why?</p> <p>Q: What are the pros and cons of each snippet?</p> http://stackoverflow.com/questions/1882584/what-is-a-covariant-return-type 4 What is a covariant return type? Lord Torgamus 2009-12-10T17:23:13Z 2009-12-10T17:24:12Z <p>What is a covariant return type in Java? In object-oriented programming in general?</p> <p>I know, it's a "just Google it"; I did, and found the answer, but I'm asking anyways because of SO's goal to be the #1 Google result for programming questions.</p> http://stackoverflow.com/questions/1866881/calling-functions-in-objects-with-javascript 0 Calling Functions in Objects with Javascript yar 2009-12-08T13:11:26Z 2009-12-09T10:32:43Z <p>I have an object defined like this:</p> <pre><code>Blah = { hideTimer:null, setTimer: function() { this.hideTimer = window.setTimeout(Blah.hidePopupInner, 500); // must be done via window due to Greasemonkey }, hidePopupInner: function() { log("This? " + this); }, hidePopupInnerPublic: function() { Blah.hidePopupInner(); } } </code></pre> <p>The problem is that the 'this' in killTimer is <strong>not</strong> set to Blah. If I change the line to say</p> <pre><code> this.hideTimer = window.setTimeout(Blah.hidePopupInnerPublic, 500); </code></pre> <p>then the 'this' is pointing to Blah so the hideTimer can be utilized.</p> <p>Making a 'public' method for each method solves the problem, but there must be an easier solution...?</p> <p><strong>Note</strong>: This is all in Greasemonkey, but I think it's a general Javascript question.</p> http://stackoverflow.com/questions/1867804/make-sure-only-corresponding-implementations-or-childs-of-it-will-be-handled 1 Make sure only corresponding implementations or childs of it will be handled neo 2009-12-08T15:45:37Z 2009-12-08T16:45:53Z <p>Imagine the following situation:</p> <p><img src="http://img4.imageshack.us/img4/9849/oop2.png" alt="example"></p> <p>As may notice the <code>Handler</code>-childs and the <code>Costumer</code>-childs match each other. Each <code>Handler</code> has a method that takes a costumer.</p> <p>Is there any good way true oo-ish to make sure that a <code>Handler</code>-implementation only takes a correponding <code>Costumer</code>-implementation or any childs of it?</p> <p>Some examples:</p> <ul> <li><code>Handler</code> will take all <code>Costumers</code></li> <li><code>HandlerA</code> will take <code>CostumerA</code> and <code>CustomerAA</code> but not <code>CostumerB</code> or <code>Costumer</code></li> <li><code>HandlerAA</code> will only take <code>CostumerAA</code></li> </ul> <p>I came up with some ideas:</p> <ul> <li>Make the <code>Handler</code> implementation check if it's a <code>Costumer</code> it knows</li> <li>Create a dispatcher wich does the check</li> </ul> <p>None of these seem good because always you need to hardcode the structure. If you add another subclass you need to change all logic that checks that which is quite bad.</p> http://stackoverflow.com/questions/1856890/why-does-jquery-use-new-jquery-fn-init-for-creating-jquery-object-but-i-cant 0 Why does jQuery use "new jQuery.fn.init()" for creating jQuery object but I can't? Soul_Master 2009-12-06T22:40:11Z 2009-12-07T13:05:15Z <p>I try to create some class based-on jQuery style like the following code.</p> <pre><code>myClass = window.myClass = function(x, y) { return new myClass.fn.init(x, y); }; myClass.fn = myClass.prototype = { init: function(x, y) { // logic for creating new myClass object. } }; </code></pre> <p>I do not understand why jQuery use new keyword for creating its class because from my experiment, JavaScript always create myClass.init object instead of myClass object. However, I try to remove new keyword in myClass constructor. But it still not changes. Can you explain why jQuery can do that but I can’t or give me some code for using in init function?</p> <p>By the way, I can use the following code instead of jQuery style code for creating the same object. What is the different between my code &amp; jQuery code? Are there any benefit for using jQuery style?</p> <pre><code>myClass = window.myClass = function(x, y) { this.init(x, y); }; myClass.fn = myClass.prototype = { init: function(x, y) { this.x = x; this.y = y; } }; </code></pre> <p>PS. I like write code that separate initial logic into function because it is very easy to override this function by other people that use my code like my following code.</p> <pre><code>// override init function of myClass myClass.fn._old_init = myClass.fn.init; myClass.fn.init = function() { // logic for doing something before init this._old_init(); // logic for doing something after init }; </code></pre> <p><strong>Thanks,</strong></p> http://stackoverflow.com/questions/1859703/why-java-is-not-fully-object-oriented 1 Why Java is not fully object oriented? [closed] Bhupi 2009-12-07T12:32:43Z 2009-12-07T12:57:25Z <blockquote> <p><strong>Possible Duplicates:</strong><br> <a href="http://stackoverflow.com/questions/974583/is-java-100-object-oriented">Is java 100% object oriented ?</a><br> <a href="http://stackoverflow.com/questions/1714669/is-java-100-object-oriented">Is Java 100% object oriented?</a> </p> </blockquote> <p>Hi,</p> <p>Can somebody tell me why java is not fully object oriented programming?</p> <p>And what is meant by fully object oriented? How java is not fully object oriented?</p> <p>The question was asked in an interview.</p> <p>-Thanks</p> http://stackoverflow.com/questions/1819444/oop-when-is-it-an-object 16 OOP: When is it an object? Dan 2009-11-30T12:11:17Z 2009-12-07T06:21:51Z <p>I'm trying to understand object orientation. I understand it a little bit of course, but sometimes I'm not 100% clear. How do you decide what should be turned into an object (small object part of another big whole object) or what is not worth being an object, or maybe it should be just a property of that big whole object? </p> <p>For a door, I guess the door knob should be an independent object, but should that part in the middle where you insert the key also be an independent object or what? This is a simple example so I can explain my confusion. You can use your example if it helps you make your point better. </p> <p><strong>I was thinking that if maybe I'm going to use it multiple times, I should make it an object. This I think is a practical way to resolve this problem, do you agree?</strong></p> <p>Thanks</p> http://stackoverflow.com/questions/1855257/this-variable-in-php 1 $this variable in PHP superdario 2009-12-06T12:22:20Z 2009-12-06T13:37:55Z <p>Hello all,</p> <p>I've just started getting familiarized with OO features of PHP, and I would like to ask you something about the <code>$this</code> variable. First of all, if a class that I'm using the <code>$this</code> keyword in does not have a defined property variable <code>foo</code>, does that mean that using the following code:</p> <pre><code>$this-&gt;foo = 5; echo $this-&gt;foo; </code></pre> <p>will create the <code>foo</code> property on the object on runtime, like in JavaScript? What is the visibility of this property?</p> http://stackoverflow.com/questions/1854352/when-to-use-a-property-vs-a-method 5 When to use a property vs a method? [closed] jdelator 2009-12-06T04:25:17Z 2009-12-06T05:58:50Z <blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="http://stackoverflow.com/questions/601621/properties-vs-methods">Properties vs Methods</a> </p> </blockquote> <p>Is there any rule or general best practice as to when to use a property vs a method? Technically any parameterless method can be made in a property and any property can be made a method, but sometimes when to decide when to use one of the other can be blurred.</p> <p>I was hoping to get some rules you guys kept in mind when deciding between the two.</p> http://stackoverflow.com/questions/1821266/what-is-so-special-about-smalltalk 18 What is so special about Smalltalk? Steve 2009-11-30T17:42:33Z 2009-12-05T23:11:04Z <p>In every technical publication, and on this site too, people are always comparing OO languages to <a href="http://en.wikipedia.org/wiki/Smalltalk" rel="nofollow">Smalltalk</a>. My experience is in Java: is Smalltalk <em>so</em> important that I should study it?</p> http://stackoverflow.com/questions/1851289/is-it-bad-practice-to-have-a-class-that-requires-a-reference-to-the-instantiating 3 Is it bad practice to have a class that requires a reference to the instantiating object? SDGator 2009-12-05T06:04:22Z 2009-12-05T22:41:25Z <p>I saw this in someone's code and thought wow, that's an elegant way to solve this particular problem, but it probably violates good OO principles in an epic way.</p> <p>In the constructor for a set of classes that are all derived from a common base class, he requires a reference to the instancing class to be passed. For example,<br> Foo Foo_i = new(this);</p> <p>Then later on Foo would call methods in the instancing class to get information about itself and the other objects contained by the instancing class.</p> <p>On the one hand, this simplifies a TON of code that models a 5-layer tree structure in hardware (agents plugged into ports on multiple switches, etc). On the other hand, these objects are pretty tightly coupled to each other in a way that seems pretty wrong, but I don't know enough about OOA&amp;D to put my finger on it. </p> <p>So, is this okay? Or is this the OO equivalent to a goto statement?</p> http://stackoverflow.com/questions/1851287/dynamically-auto-linking-instance-variables-to-object-functions-in-javascript-j 0 Dynamically Auto-Linking instance variables to object functions in javascript / jquery? Matt 2009-12-05T06:02:44Z 2009-12-05T09:48:54Z <p>Hey all,</p> <p>I'm trying to create a robust audio player in javascript (&amp; jQuery). I know that there are other players out there, but I'd like to try creating my own (so please don't refer me to jquery plugins). This is essentially what I would like to do:</p> <p><strong>Main.js:</strong></p> <pre><code>var player = new Player(AudioObj); // Audio object links to Audio class (not shown) player.buttons.play = $('play'); player.buttons.pause = $('pause'); // Play and pause ID's link to HTML Document Element </code></pre> <p><strong>Player.js:</strong></p> <pre><code>Player = function(Audio) { this.Audio = Audio; this.buttons = {}; for(var button in this.buttons) { button.live('click', this.button); // This is the line I Have NO idea about.. } } Player.prototype = { play : function() { // Do Something }, pause : function() { // Do something } } </code></pre> <p>So essentially, I would like the properties to be pre-linked to object functions when you initialize the Player, and to just have it work when I link it to an HTML element.</p> <p>Thanks! Matt Mueller</p> http://stackoverflow.com/questions/1849599/how-do-i-pass-a-reference-to-the-outer-class-to-a-method-in-an-inner-class-or 0 How do I pass a reference to the outer class to a method in an inner class? ( Or how do I pass "this" to an inner class? ) FallSe7en 2009-12-04T20:54:51Z 2009-12-04T22:49:56Z <p>I have a class as follows:</p> <pre><code>private class LanePair { public int cameraNumber; public Nest nest1, nest2; public LanePairStatus status = LanePairStatus.TIMER_OFF; Timer timer = new Timer(); public LanePair(int cameraNunber, Nest nest1, Nest nest2) { this.cameraNumber = cameraNumber; this.nest1 = nest1; this.nest2 = nest2; } public void startTimer() { status = LanePairStatus.TIMER_ON; timer.schedule(new TimerTask() { public void run() { DoAskForLaneClear(/*I want to pass this class (LanePair) here*/); } }, 6000 ); // 6 seconds } public void stopTimer() { timer.cancel(); } } </code></pre> <p>The thing is, I can't figure out how to do it. Any suggestions?</p> <h3>Related:</h3> <ul> <li><a href="http://stackoverflow.com/questions/31201/how-do-you-get-a-reference-to-the-enclosing-class-from-an-anonymous-inner-class">How do you get a reference to the enclosing class from an anonymous inner class in Java?</a></li> <li><a href="http://stackoverflow.com/questions/1816458/getting-hold-of-the-outer-class-object-from-the-inner-class-object">Getting hold of the outer class object from the inner class object</a></li> </ul> http://stackoverflow.com/questions/1783317/singleton-pattern-and-abstraction-in-js 0 Singleton Pattern and Abstraction in JS Upper Stage 2009-11-23T14:08:06Z 2009-12-03T18:57:29Z <p>Although the example below exploits ExtJS, one can easily extrapolate to another framework. I am a fan of abstraction and data hiding (and OO in general); does anyone else hide data and members/functions or do you consider this attempt to be overkill? </p> <p>(Note: I believe strongly that DOM IDs should almost never be hardcoded. And, though I use prototypes for public methods of typical classes, you will notice a public function below created outside of the prototype.)</p> <p>This note is interesting <a href="http://yuiblog.com/blog/2007/06/12/module-pattern/" rel="nofollow">http://yuiblog.com/blog/2007/06/12/module-pattern/</a></p> <pre><code>Ext.ns('Foo.Bar'); /** * Foo.Bar.MainToolbar (singleton) */ Foo.Bar.MainToolbar = (function() { // Temporary, private class used to create and return an object - a singleton var toolbarClass = Ext.extend( Ext.Container, { /** * constructor (public) */ constructor: function( config ) { config = config || {}; // PRIVATE MEMBER DATA ======================================== // Need IDs for animation anchors var accountId = Ext.id( null, 'ls-accountDiv-'); var faqId = Ext.id( null, 'ls-faqDiv-'); var logoutId = Ext.id( null, 'ls-logoutDiv-'); var loginId = Ext.id( null, 'ls-loginDiv-'); var rulesId = Ext.id( null, 'ls-rulesDiv-'); var itemCls = 'color: white; cursor: pointer; font-weight: bold; ' + 'font-family:Helvetica,Arial,Verdana,Lucida Sans Unicode,Sans-serif;'; // PUBLIC METHODS ********************************************* /** * userLogin (public) - */ this.userLogin = function( userName, password ) { // Update title bar Ext.fly(accountId).update( userName ); Ext.fly(loginId).hide(true); Ext.fly(logoutId).show(true); }; // PRIVATE METHODS ******************************************** /** * handleFaqClick (private) - handler for click on FAQ */ var handleFaqClick = function( event ) { var dialogMsg = '&lt;div style="text-align: leftblah, blah&lt;/div&gt;'; Ext.Msg.show({ title: 'FAQ', modal: true, msg: dialogMsg, animEl: faqId, buttons: Ext.Msg.OK, icon: Ext.MessageBox.QUESTION, minWidth: '700' }); }; /** * handleLogoutClick (private) - handler for click on logout */ var handleLogoutClick = function( event ) { Ext.fly(accountId).update(''); Ext.fly(logoutId).hide(true); Ext.fly(loginId).show(true); }; /** * handleRulesClick (private) - handler for click on RULES */ var handleRulesClick = function( event ) { var dialogMsg = '&lt;div style="text-align: left;"&gt;&lt;br/&gt;&lt;b&gt;blah, blah&lt;/div&gt;'; Ext.Msg.show({ title: 'Rules', modal: true, msg: dialogMsg, animEl: rulesId, buttons: Ext.Msg.OK, icon: Ext.MessageBox.INFO, minWidth: '700' }); }; // CONSTRUCTOR =============================================== // Some parameters (possibly) offered by the user are ignored config.id = Ext.id( null, 'ls-mainToolbar-'); config.layout = 'absolute'; config.layoutConfig = {}; config.height = 38; config.width = 968; config.items = [ { id: Ext.id( null, 'ls-mainToolbar-'), xtype: 'box', x: 25, y: 0, height: 36, autoEl: { tag: 'img', src: './images/top_toolbar.png' } },{ id: Ext.id( null, 'ls-logo-'), xtype: 'box', x: 70, y: 8, height: 22, width: 200, autoEl: { style: itemCls, html: 'Foo Bar' } },{ id: accountId, xtype: 'box', x: 470, y: 8, height: 22, width: 200, autoEl: { style: itemCls + ' text-align: right;', html: ' ' } },{ id: logoutId, xtype: 'box', x: 730, y: 8, height: 22, width: 36, autoEl: {style: itemCls + ' visibility: hidden;', html: 'logout'}, listeners: { render: function( cmp ){ cmp.getEl().addListener('click', handleLogoutClick.createDelegate(this)) }.createDelegate(this) } },{ id: loginId, xtype: 'box', x: 730, y: 8, height: 22, width: 36, autoEl: { style: itemCls, html: 'login' }, listeners: { render: function( cmp ){ cmp.getEl().addListener('click', Foo.Bar.LoginDialog.show.createDelegate( Foo.Bar.LoginDialog, [Ext.emptyFn])) } } },{ id: rulesId, xtype: 'box', x: 800, y: 8, height: 22, width: 36, autoEl: { style: itemCls, html: 'rules'}, listeners: { render: function( cmp ){ cmp.getEl().addListener( 'click', handleRulesClick.createDelegate(this) ) }.createDelegate(this) } },{ id: faqId, xtype: 'box', x: 860, y: 8, height: 22, width: 26, autoEl: { style: itemCls, html: 'faq'}, listeners: { render: function( cmp ){ cmp.getEl().addListener( 'click', handleFaqClick.createDelegate(this) ) }.createDelegate(this) } }]; toolbarClass.superclass.constructor.apply( this, [config] ); Foo.Bar.LoginDialog.addListener( Foo.Bar.LoginDialog.LOGIN_SUCCESSFUL_EVENT(), this.userLogin.createDelegate(this)); } }); return new toolbarClass(); })(); </code></pre> http://stackoverflow.com/questions/1829216/how-can-i-programmatically-obtain-the-maxlength-of-a-django-model-field 1 How can I programmatically obtain the max_length of a Django model field? Mat 2009-12-01T21:56:14Z 2009-12-02T11:10:06Z <p>Say I have a Django class something like this:</p> <pre><code>class Person(models.Model): name = models.CharField(max_length=50) # ... </code></pre> <p>How can I programatically obtain the <code>max_length</code> value for the <code>name</code> field?</p> http://stackoverflow.com/questions/1831301/finding-perimeter-and-area-of-a-rectangle-object-c 0 Finding Perimeter and area of a Rectangle object? (C#) Alex 2009-12-02T07:55:41Z 2009-12-02T08:34:49Z <p>Hi,</p> <p>I know that the formula for finding the area of a rectangle is just length * width, and the peremiter formula is 2(length) + 2(width). My question is, whats the most efficient way to find the area and perimeter of a rectangle object made up of other objects?</p> <p><strong>My Code Snippet:</strong></p> <pre><code>class Rectangle { public Line left { get; set; } public Line top { get; set; } public Line right { get; set; } public Line bottom { get; set; } public Rectangle() : this(new Line(new Point(), new Point())) { } public Rectangle(Line diaganol) { Point beginningDiagonalPoint = diaganol.startPoint; Point endingDiagonalPoint = diaganol.endPoint; int begXC = beginningDiagonalPoint.xCoord; int begYC = beginningDiagonalPoint.yCoord; int endXC = endingDiagonalPoint.xCoord; int endYC = endingDiagonalPoint.yCoord; Point rightSideEnd = new Point(endXC, begYC); Point leftSideEnd = new Point(begXC, endYC); right = new Line(endingDiagonalPoint, rightSideEnd); left = new Line(beginningDiagonalPoint, leftSideEnd); top = new Line(leftSideEnd, endingDiagonalPoint); bottom = new Line(rightSideEnd, beginningDiagonalPoint); } } </code></pre> <p>I want to write two methods, one to calculate the area, and one to caclulate the perimeter, how should I approach this with objects?</p> <p>I know I could take the xfinal coord - xinitial coord for width, and yfinal - yinitial for the length, but is there another and/or better way of doing this with objects?</p> <p><strong><em>Thanks!</em></strong></p> http://stackoverflow.com/questions/1483418/can-i-overload-perls-and-a-problem-while-use-tie 2 Can I overload Perl's =? (And a problem while use Tie) Galaxy 2009-09-27T11:45:22Z 2009-12-02T05:33:34Z <p>I choose to use tie and find this:</p> <pre><code>package Galaxy::IO::INI; sub new { my $invocant = shift; my $class = ref($invocant) || $invocant; my $self = {']' =&gt; []}; # ini section can never be ']' tie %{$self},'INIHash'; return bless $self, $class; } package INIHash; use Carp; require Tie::Hash; @INIHash::ISA = qw(Tie::StdHash); sub STORE { #$_[0]-&gt;{$_[1]} = $_[2]; push @{$_[0]-&gt;{']'}},$_[1] unless exists $_[0]-&gt;{$_[1]}; for (keys %{$_[2]}) { next if $_ eq '='; push @{$_[0]-&gt;{$_[1]}-&gt;{'='}},$_ unless exists $_[0]-&gt;{$_[1]}-&gt;{$_}; $_[0]-&gt;{$_[1]}-&gt;{$_}=$_[2]-&gt;{$_}; } $_[0]-&gt;{$_[1]}-&gt;{'='}; } </code></pre> <p>if I remove the last "$<em>[0]->{$</em>[1]}->{'='};", it does not work correctly. Why ?</p> <p>I know a return value is required. But "$<em>[0]->{$</em>[1]};" cannot work correctly either, and $<em>[0]->{$</em>[1]}->{'='} is not the whole thing.</p> <p><hr> Old post:</p> <p>I am write a package in Perl for parsing INI files. Just something based on <a href="http://search.cpan.org/perldoc/Config%3A%3ATiny" rel="nofollow"><code>Config::Tiny</code></a>.</p> <p>I want to keep the order of sections &amp; keys, so I use extra array to store the order.</p> <p>But when I use " <code>$Config-&gt;{newsection} = { this =&gt; 'that' }; # Add a section</code> ", I need to overload '<code>=</code>' so that "newsection" and "this" can be pushed in the array.</p> <p>Is this possible to make "<code>$Config-&gt;{newsection} = { this =&gt; 'that' };</code>" work without influence other parts ?</p> <p>Part of the code is:</p> <pre><code>sub new { my $invocant = shift; my $class = ref($invocant) || $invocant; my $self = {']' =&gt; []}; # ini section can never be ']' return bless $self, $class; } sub read_string { if ( /^\s*\[\s*(.+?)\s*\]\s*$/ ) { $self-&gt;{$ns = $1} ||= {'=' =&gt; []}; # ini key can never be '=' push @{$$self{']'}},$ns; next; } if ( /^\s*([^=]+?)\s*=\s*(.*?)\s*$/ ) { push @{$$self{$ns}{'='}},$1 unless defined $$self{$ns}{$1}; $self-&gt;{$ns}-&gt;{$1} = $2; next; } } sub write_string { my $self = shift; my $contents = ''; foreach my $section (@{$$self{']'}}) { }} </code></pre> http://stackoverflow.com/questions/1826087/web-services-object-oriented-question 4 web services/object-oriented question Gandalf StormCrow 2009-12-01T13:05:06Z 2009-12-01T15:41:55Z <p>Hi, I just recently started with object oriented programming, using java. Before I was programming in old visual basic which wasn't object oriented and in old php which wasn't object oriented .. </p> <p>Now my question : Where can I learn about webservices and object oriented programming through concrete examples? (real life examples not hello world type) </p> <p>I read all of the articles which I could find on wikipedia, google etc. Does anyone have 1st hand expirience from switching to object-oriented programming , of course I'm more interested in success stories :D </p> <p>Thank you</p> http://stackoverflow.com/questions/1817904/erlang-functional-programming-vs-object-oriented-programming-in-terms-of-thinki 5 Erlang (Functional Programming) vs Object Oriented Programming in terms of thinking Jeffrey 2009-11-30T04:49:55Z 2009-12-01T00:39:30Z <p>I am learning Erlang and I am trying to create a very sample blog program. However my mind currently is <strong>trapped in the OO world</strong> (<em>var p = new Post(); p.Title = ""; p.Save();</em>). I would like to understand some basic thinkings in Erlang. Instead of creating Post object what I should do in terms of data structure (<em>p.Title, p.DateCreated, p.Body</em>)? Should I be using tuple? I would like to understand the recommended way in doing such things (in both Erlang specific and or Functional Programming specific). Or is what I am doing fundamentally wrong in either Erlang or FP?</p> <p>Requirement (in OO terms, not sure how to explain in FP terms yet ^_^):</p> <ol> <li>create Post object (id, title, date_created, body, IList)</li> <li>create Comment object (id, post_id, created_by (name as string), date_created)</li> <li>one Post can have multiple comments</li> <li>post.AddComment(Comment)</li> </ol> <p>Thanks.</p> <p>Updated: I am not looking for specific way of doing OOP in Erlang unless it's the recommended way. I am looking for standard/recommended way of doing what's described in the question, however I am not trying to replicate OOP in Erlang.</p> http://stackoverflow.com/questions/1822258/how-to-access-the-value-of-an-object-from-inside-a-method-of-the-same-object-in-j 0 How to access the value of an object from inside a method of the same object in Javascript? Juanra 2009-11-30T20:37:47Z 2009-11-30T20:40:32Z <p>Hi, I'm trying to add a toBool() "method" inside the Object object using prototype... something like this:</p> <pre><code>Object.prototype.toBool = function () { switch(this.toLowerCase()) { case "true": case "yes": case "1": return true; case "false": case "no": case "0": case null: return false; default: return Boolean(string); } } var intAmount = 1; if(intAmount.toBool()) </code></pre> <p>But I'm having an issue trying to access the value of the object from inside the same object method <code>this.toLowerCase()</code></p> <p>How should it be done?</p> http://stackoverflow.com/questions/1816155/java-nullpointerexception-when-i-call-a-method-on-a-custom-class 0 Java NullPointerException When I call a method on a custom class Size_J 2009-11-29T17:39:09Z 2009-11-29T17:55:34Z <p>I get a null pointer exception when a call a method on a custom class. I do not see why my object p of class Player is null. (Player is a class of Players of my game) play is the method. This class should create n number of p objects of the Player class and run the play method on them. </p> <pre><code>import java.util.*; public class PsychicGameMore { private ArrayList &lt;Player&gt; players; private int orginalNumber; private Player p; public PsychicGameMore() { int n; Scanner s; s = new Scanner(System.in); System.out.println("How many players will there be?, Please enter a number"); n = s.nextInt(); players = new ArrayList&lt;Player&gt;(n); //for loop to create n number of Players for(int i = 0; i &lt; n; i++) { Player p; p = new Player(); players.add(p); } orginalNumber =0; } public void play() { Random myRandom; myRandom = new Random(); do { orginalNumber = myRandom.nextInt(6)+1; System.out.println("The computer has choosen the number " + orginalNumber); p.play(); if(orginalNumber == p.getGuessedNumber()) { System.out.println(p.getName() + " has won!!!!!!!!!!!!!!!!"); } } while((orginalNumber != p.getGuessedNumber())); } } </code></pre> <p>Thanks for any help. </p> http://stackoverflow.com/questions/1794145/what-is-the-proper-object-relationship-c 2 What is the proper object relationship? (C#) Nitax 2009-11-25T01:45:08Z 2009-11-28T19:35:33Z <p>Hi, </p> <p>I had a quick question about the proper object relationship I should set up for this situation:</p> <p>I have a Customer object with associated parameters and a depot object with associated parameters. Each depot serves a set of customers and the customer needs access to particular information for their respective depot. </p> <p>I'm wondering what the proper relationship I should set up so that a set of customer objects all reference the same instance of a particular depot object. I wanted to be sure it wasn't creating a duplicate Depot object for each customer. Furthermore, i'd like to be able to change properties of the Depot without going through the customer itself. </p> <p>I know this is probably a fairly basic question but C# has so many different "features" it gets confusing from time to time. </p> <p>Thanks for your help!</p> <ul> <li>Charlie </li> </ul>