active questions tagged classes - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T01:28:49Z http://stackoverflow.com/feeds/tag/classes http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1823007/javascript-classes-and-variable-scope 1 JavaScript Classes and Variable Scope Cmc 2009-11-30T22:57:29Z 2009-11-30T23:46:29Z <p>I'm relatively new to JS and I'm having issues properly emulating OOP principles. </p> <p>I guess I have two questions. Question the first is regarding the many ways to declare variables.</p> <p>Say I have a class:</p> <pre><code>function clazz(a) { this.b = 2; var c = 3; this.prototype.d = 4; // or clazz.prototype.d = 4? } var myClazz = new clazz(1); </code></pre> <p>Am I correct in the following assessments:</p> <p>a is a private variable that is instance specific (i.e. different instances of clazz will have unique and independent variables 'a'). It can be accessed from within clazz as: 'a'.</p> <p>b is a public variable that is instance specific. It can be accessed from within clazz as 'this.b' and from outside clazz as 'myClazz.b'.</p> <p>c is a private variable that is static, or class specific (i.e. different instances of clazz will share the same 'c' variable). It can be accessed from within any instance of clazz as 'c' and changes in instance of clazz are reflected in all instances of clazz.</p> <p>d is a public variable that is static/class specific. It can be accessed from anywhere via 'clazz.prototype.d' or 'myClazz.prototype.d'.</p> <p>The overall issue I have with my understanding of the variable scheme is that there's no way to declare a private variable that is NOT static (i.e. a unique version for every instance of the class).</p> <p>The second question is with respect to different types of class declarations.</p> <p>I've been using:</p> <pre><code>var MySingleton = new function() {...}; </code></pre> <p>to create singletons. Is this correct? I'm also unsure as to the effect of the "new" keyword in this situation as well as appending () function braces to the end of the declaration as so:</p> <pre><code>var MySingleton = new function() {...}(); </code></pre> <p>I've been using this pattern to declare a class and then instantiate instances of that class:</p> <pre><code>function myClass() {...}; var classA = new myClass(); var classB = new myClass(); </code></pre> <p>Is this the proper method?</p> http://stackoverflow.com/questions/1822938/php-abstract-class-site-configuration 2 Php abstract class site configuration andrew 2009-11-30T22:41:49Z 2009-11-30T22:50:21Z <p>Hi, i have a config class which is an abstract class. I would like to set it up so it automatically detects which server the site is on and then assigns appropriate constants. I get an error on line ten <code>$this-&gt;hostName = $_SERVER['SERVER_NAME'];</code> expecting `T_FUNCTION. What is the correct way to do this and is there a better way to do this? Here is the first part of my class</p> <pre><code>abstract class config{ public $hostName; public $hostSlices; public $domain; echo $_SERVER['SERVER_NAME']; //strips out the "www" from the server name but only if it has the name on it . $this-&gt;hostName = $_SERVER['SERVER_NAME']; $this-&gt;hostSlices = explode(".",$this-&gt;hostName); if($this-&gt;hostSlices[0]=="www"){array_shift($this-&gt;hostSlices);} $this-&gt;domain = join(".",$this-&gt;hostSlices); //depending on which domain is used, different config setup is used. switch ($this-&gt;domain){ case "localhost":*/ const HOST = "localhost";//would http://localhost/ work as well. In that case, then this and the SITE_ROOT could be the same variable and i would preferentially set them depending on the host that the site is on. const USER = "root"; const PWD = "xxxxxxx"; const NAME = "hurunuitconz";//database name //public $name = "hello from the config class";//you cannot access variables from an abstract class you should define constants and then the can be used anywhere ###########Location of file groups######## const SITE_ROOT = "http://localhost"; const ADMIN_IMAGES = 'http://localhost/images/user_images/admin_images'; break; case "charles.hughs.natcoll.net.nz": const HOST = "charles.hughs.natcoll.net.nz";//would http://localhost/ work as well. In that case, then this and the SITE_ROOT could be the same variable and i would preferentially set them depending on the host that the site is on. const USER = "charles_andrew"; const PWD = "xxxxxxx"; const NAME = "charles_hurunuitconz";//database name ###########Location of file groups######## const SITE_ROOT = "http://charles.hughs.natcoll.net.nz/_Assignments/Industry/www";//this is just confusing the way natcoll makes us do this. const ADMIN_IMAGES = 'http://charles.hughs.natcoll.net.nz/_Assignments/Industry/www/images/user_images/admin_images'; break; } </code></pre> <p>Thankyou</p> http://stackoverflow.com/questions/1820421/extending-the-mysqli-class 0 Extending the MySQLi class bennn 2009-11-30T15:19:32Z 2009-11-30T18:54:54Z <p>I want to be able to make classes which extend the MySQLi class to perform all its SQL queries.</p> <pre><code>$mysql = new mysqli('localhost', 'root', 'password', 'database') or die('error connecting to the database'); </code></pre> <p>I dont know how to do this without globalising the $mysql object to use in my other methods or classes.</p> <pre><code>class Blog { public function comment() { global $mysql; //rest here } } </code></pre> <p>Any help would be appreciated.</p> <p>Thanks.</p> http://stackoverflow.com/questions/1790455/whats-the-best-way-to-name-id-classes-in-css-and-html 2 Whats the best way to name id & classes in CSS and HTML Cool Hand Luke UK 2009-11-24T14:34:32Z 2009-11-30T12:38:26Z <p>When naming classes and ids for CSS what is the best method to use. In this case I need there to be some kind of naming convention so that other people can pick up rules and understand how to name their own ids and classes using the same pattern. Any suggestions? Some of the sites we create can get pretty complex but use an overall structure header, content and footer. The naming must be efficient too. </p> <p>Cheers.</p> <p>Ps I am not new to CSS I am aware of giving them names that represent their structure etc. just want to know people opions really and ways of doing this. </p> http://stackoverflow.com/questions/1816817/lifting-class-instance-in-haskell 7 Lifting class instance in Haskell Rafael S. Calsaverini 2009-11-29T21:19:29Z 2009-11-29T21:55:14Z <p>Is there a way to "lift" a class instance in Haskell easily?</p> <p>I've been frequently needing to create, e.g., Num instances for some classes that are just "lifting" the Num structure through the type constructor like this:</p> <pre><code>data SomeType a = SomeCons a instance (Num a)=&gt;Num SomeCons a where (SomeCons x) + (SomeCons y) = SomeCons (x+y) negate (SomeCons x) = SomeCons (negate x) -- similarly for other functions. </code></pre> <p>Is there a way to avoid this boilerplate and "lift" this Num structure automatically? I usually have to do this with Show and other classes also when I was trying to learn existencials and the compiler wouldn't let me use <code>deriving(Show)</code>.</p> http://stackoverflow.com/questions/1813890/javascript-pseudoclass-handling-in-php 0 Javascript Pseudoclass handling in php Ragnagard 2009-11-28T21:58:10Z 2009-11-28T22:19:10Z <p>Hi all!</p> <p>I am working with javascript pseudoclasses in the sense of:</p> <pre><code>class Foo ----&gt;getName() ----&gt;setName() ----&gt;.... </code></pre> <p>So i can have collections of them to operate with in client calculations. But, there is some way to handle them "as is" in php?</p> <p>in other words, pass it like an object where I could do a call to getName, for example.</p> <p>Thanks in advance, Ragnagard :D</p> http://stackoverflow.com/questions/1811422/classical-vs-prototypal-how-are-they-so-different 0 Classical vs Prototypal... how are they so different? pǝlɐɥʞ 2009-11-28T03:09:47Z 2009-11-28T04:08:35Z <p>for example in PHP</p> <pre><code>class foo{ function foo($name){ //constructor $this-&gt;name=$name; } function sayMyName(){ return $this-&gt;name; } } class bar extends foo{ function sayMyName(){ return "subclassed ".$this-&gt;name; } } </code></pre> <p>And in JS</p> <pre><code>function foo(name){ this.name=name; } foo.prototype.sayMyName=function(){return this.name}; function bar(){} bar.prototype=new foo(); bar.prototype.sayMyName=function(){return "subclassed "+this.name}; </code></pre> <p>I am new to javascript, so please enlighten me, Aren't they functionally identical, or am I missing something huge?<br> If they are identical, how is classical different from prototypal?</p> <p>thanks in advance...</p> http://stackoverflow.com/questions/1804187/what-is-the-difference-between-and-in-php 1 What is the difference between -> and :: in PHP? Chris 2009-11-26T15:03:25Z 2009-11-27T04:38:14Z <p>Hi,</p> <p>This thing has been bugging me for long and I can't find it anywhere!</p> <p>What is the difference when using classes in php between :: and -></p> <p>Let me give an example.</p> <p>Imagine a class named MyClass and in this class there is a function myFunction</p> <p>What is the difference between using:</p> <pre><code>MyClass myclass = new MyClass myclass::myFunction(); </code></pre> <p>or </p> <pre><code>MyClass myclass = new MyClass myclass-&gt;myFunction(); </code></pre> <p>Thank you</p> http://stackoverflow.com/questions/1803982/how-to-tell-difference-between-python-class-and-object 0 How to tell difference between python class and object? [closed] mrdobolina 2009-11-26T14:28:09Z 2009-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/1791715/css-selector-problem 2 Css Selector problem Adam 2009-11-24T17:42:07Z 2009-11-24T17:45:38Z <p>How do I do a css selector that selects a div that has the class of "someButton" AND "current"?</p> <pre><code>.someButton .current { /* select current with the parent div of .someButton, correct? */ </code></pre> <p>Please help me figure this out!</p> http://stackoverflow.com/questions/1789078/how-to-find-all-classes-of-a-particular-interface-within-an-assembly-in-net 2 How to find all classes of a particular interface within an assembly in .net Max 2009-11-24T10:00:20Z 2009-11-24T11:05:00Z <p>I have a scenario whereby I want n amount of classes to look at the same data and decide if any work needs to be done. Work is done by a team, and multiple teams can work on the data at the same time. I was thinking of creating a class for every team that would implement the CreateWork interface. All CreateWork classes must have their say. At the moment there are only a few but in the future there will be many more.</p> <p>Sudo code for my planned solution</p> <pre><code>For each CreateWork class in assembly class.CheckAndCreateWork(dataIn,returnedCollectionOfWorkToBeDone) Next </code></pre> <p>Is there a design pattern that can accomplish this in an elegant way? Seems a bit messy to loop round every class in the assembly.</p> <p>Cheers</p> http://stackoverflow.com/questions/1788035/sharing-methods-between-two-implementations-of-a-virtual-base-class-in-c 0 Sharing methods between two implementations of a virtual base class in C++ blcArmadillo 2009-11-24T05:38:30Z 2009-11-24T06:12:47Z <p>I have a virtual base class and two classes that implement the various methods. The two classes have the same functionality for one of the methods. Is there away I can share the implementation between the two classes to eliminate redundant code? I tried making the first class a parent of the second class in addition to the virtual base class but got a bunch of errors.</p> <p><strong>EDIT</strong> - Thanks everyone for the replies. One thing I should have mentioned is that I cannot modify the virtual base class so just adding the code to the base class will not work.</p> http://stackoverflow.com/questions/1776787/an-error-with-haskell-classes-i-fall-all-the-time-and-cant-understand 0 An error with Haskell classes I fall all the time and can't understand Rafael S. Calsaverini 2009-11-21T21:07:47Z 2009-11-23T04:20:31Z <p>Hi, there's an error I come across all the time but can't understand how to make it right. An example of code that gives me this error is:</p> <pre><code>class Someclass a where somefunc :: (Num b) =&gt; b -&gt; a -&gt; a data Sometype = Somecons Int instance Someclass Sometype where somefunc x (Somecons y) = Somecons (x+y) </code></pre> <p>The error message is: </p> <blockquote> <p>Couldn't match expected type 'b' against inferred type 'Int'<br> 'b' is a rigid type variable bound by the type signature for 'somefunc' at error.hs:3:21<br> In the second argument of '(+)', namely 'y'<br> In the first argument of 'Somecons', namely '(x + y)'<br> In the expression: Somecons (x + y)</p> </blockquote> <p>I understand that the error message is trying to tell me that I used a name of type Int where he was expecting something with type (Num b) => b. What I can't understand is that Int fits in (Num b)=>b. Shouldn't the compiler understand what I'm telling him (that for this specific instance b should be an integer? How can I make this fit?</p> <p>Coment: Of course in this specific example I could have made somefunc with type signature:</p> <pre><code>somefunc :: a -&gt; a-&gt; a </code></pre> <p>but supose I wanted something like:</p> <pre><code>data Newtype = Newcons (Int, Int) instance Someclass Newtype where somefunc x (Newtype (y,z) ) = Newtype (y+x, z) </code></pre> <p>Things like that recurrently happens when I'm trying to do something in haskell. </p> http://stackoverflow.com/questions/1720931/mootools-extends-plus-implements 2 Mootools "Extends" plus "Implements" Romansky 2009-11-12T09:12:41Z 2009-11-22T22:26:25Z <p>Hi,</p> <p>I like to write my code slim and sexy (on the performance and memory side), I am using Mootools and was wondering if I was using it the correct way, also you can help me by telling me how to test my code to find the answers I am looking for my self.</p> <pre><code>//First we create a class like so: var FirstClass = new Class {( 'someFunc': function() { /* do stuff */ } }) //Now this class uses first class with "Implements" var SecondClass = new Class ({ 'Implements': [FirstClass, SomeOtherClass, SomeOtherOtherClass], 'iAlsoDoStuff': function() {/*do stuff */} }) // finally the class that Extends second class var ThirdClass = new Class ({ 'Extends': SecondClass, 'takeOverTheWorld': function() {/*code to win lottery */} }) </code></pre> <p>How can I tell if every time secondclass is extended it doesnt make a new copy of the Implemented classes? The reason I am doing what I am doing above is to Extend SecondClass for every class that needs it - doing so statically, while the second class cannot extend more then one class thus I am using Implements.</p> http://stackoverflow.com/questions/1764798/loading-swc-assets-into-array-in-pure-actionscript-3-project 2 Loading .swc assets into array, in pure Actionscript 3 project Christian_R 2009-11-19T16:53:08Z 2009-11-21T11:48:43Z <p>Hello,</p> <p>I know how to get Flash CS4 symbols into Flash Builder via .swc. The class names become available in the main class, but I can only instantiate those one by one, writing each name into the code.</p> <p>How can I loop through the .swc and load its assets in an array without mentioning their name, then obtain and use these names for instantiation? ideally, something like (half-assed pseudocode):</p> <pre><code>the_instances: = new Array for(i=0; i&lt;the_SWC.length; i++) { tmp = new eval( the_SWC[i].name + '\(\)' ) the_instances.push( tmp ) } </code></pre> <p>or anything else to get those names in a loop.</p> http://stackoverflow.com/questions/1768074/javacript-what-are-prototypes 5 (javacript) what are prototypes? hatorade 2009-11-20T03:06:36Z 2009-11-20T04:03:41Z <p>What is a prototype for a javascript class? In other words, what is the different between</p> <pre><code>Example.prototype.method {} </code></pre> <p>and </p> <pre><code>Example.method{} </code></pre> <p>when defining the Example class?</p> <p><strong>edit:</strong> for those interested, i found a great explanation (in addition to the answer below) here for the difference between class methods and constructor methods: <a href="http://idhana.com/2009/07/13/constructor-vs-class-methods-in-javascript/" rel="nofollow">http://idhana.com/2009/07/13/constructor-vs-class-methods-in-javascript/</a></p> <p><strong>edit 2:</strong> The full answer! <a href="http://blog.anselmbradford.com/2009/04/09/object-oriented-javascript-tip-creating-static-methods-instance-methods/" rel="nofollow">http://blog.anselmbradford.com/2009/04/09/object-oriented-javascript-tip-creating-static-methods-instance-methods/</a></p> http://stackoverflow.com/questions/1752823/how-do-you-get-the-name-of-a-generic-class-using-reflection 2 How do you get the name of a generic class using reflection? Petras 2009-11-18T00:23:41Z 2009-11-18T03:24:44Z <p>How do you get the name of a generic class using reflection</p> <p>eg</p> <pre><code>public class SomeGenericClass&lt;T&gt; { } SomeGenericClass&lt;int&gt; test = new SomeGenericClass&lt;int&gt;(); </code></pre> <p><code>test.GetType().Name</code> returns "SomeGenericClass'1"</p> <p>How do I get it to return "SomeGenericClass" without the '1?</p> http://stackoverflow.com/questions/1748501/a-basic-javascript-class-and-instance-using-jquery-this-for-xml-parser 0 a basic javascript class and instance using jquery "$(this)" for XML parser two7s_clash 2009-11-17T12:21:43Z 2009-11-17T15:25:35Z <p>I am (slowly) writing an XML parser for some "site definition" files that will drive a website. Many of the elements will be parsed in the same manner and I won't necessarily need to keep the values for each.</p> <p><a href="http://f1shw1ck.com/jquery%5Fsandbox/site%5Fdefinition.xml" rel="nofollow">The XML</a></p> <p><a href="http://f1shw1ck.com/jquery%5Fsandbox/test.html" rel="nofollow">The parser so far</a></p> <p>My question is actually pretty simple: How can I use jquery manipulators in an class function? How can I pass $(this)? I know that it sometimes refers to a DOM object and sometimes the jQuery object, but am a bit hazy.</p> <p>For my function:</p> <pre><code>function parseXML(xml) { $("book, site", xml).children().each(function() { var label = $(this).get(0).tagName; var text = $(this).text(); var key = toCamelCase(label); if ((key in siteData) &amp;&amp; (text != -1)){ if (isArray(siteData[key])) { $(this).children().each(function (){ var childLabel = $(this).get(0).tagName; var childText = $(this).text(); var childKey = toCamelCase(childLabel); if(isArray(siteData[key][childKey])) { siteData[key][childKey].push(childText); } else { siteData[key].push(childText); } }); } else { siteData[key] = text; } }; }); } }); </code></pre> <p>I want to place </p> <pre><code>var label = $(this).get(0).tagName; var text = $(this).text(); var key = toCamelCase(label); </code></pre> <p>in a class, so I can do something like</p> <pre><code>var child = new Element(); and var subchild = new Element(); </code></pre> <p>and then use <code>child.label , child.text and child.key</code>... But again, not sure how to use the jquery methods with these... I have more nodes to process and I don't want to keep doing stuff like <code>var label = $(this).get(0).tagName; and then var childLabel = $(this).get(0).tagName;</code></p> <p>Thanks.</p> http://stackoverflow.com/questions/1739777/c-classes-pointers-question 1 C++ Classes - Pointers question unknown (google) 2009-11-16T02:44:56Z 2009-11-17T03:45:15Z <p>I had a quiz at school and there was this question that I wasn't sure if I answered correctly. I could not find the answer in the book so I just wanted to ask you.</p> <pre><code>Point* array[10]; </code></pre> <p>How many instances of class Point are created when the above code is called?</p> <p>I answered none because it only creates space for 10 instances, but doesn't create any. Then my friend said it was just one because when the compiler sees Point* it just creates one instance as a base.</p> http://stackoverflow.com/questions/1736919/list-retreving-items-problem-with-iterator 0 <list> retreving items problem with iterator unknown (google) 2009-11-15T07:48:57Z 2009-11-15T09:30:05Z <p>I have a list of type Instruction*. Instruction is a class that I made. This class has a function called execute().</p> <p>I create a list of Instruction*</p> <pre><code>list&lt;Instruction*&gt; instList; </code></pre> <p>I create an Instruction*</p> <pre><code>Instruction* instPtr; instPtr = new Instruction("test",10); </code></pre> <p>If I call </p> <pre><code>instPtr.execute(); </code></pre> <p>the function will be executed correctly, however if I store instPtr in the instList I cannot call the execute() function anymore from the list.</p> <pre><code>//add to list instList.push_back(instPtr); //create iterator for list list&lt;Instruction*&gt;::iterator p = instList.begin(); //now p should be the first element in the list //if I try to call execute() function it will not work p -&gt; execute(); </code></pre> <p>I get the following error:</p> <pre><code>error: request for member ‘execute’ in ‘* p.std::_List_iterator&lt;_Tp&gt;::operator-&gt; [with _Tp = Instruction*]()’, which is of non-class type ‘Instruction*’ </code></pre> http://stackoverflow.com/questions/1736745/c-class-inheritance-problem 1 C++ Class Inheritance problem unknown (google) 2009-11-15T06:07:12Z 2009-11-15T09:24:09Z <p>Hi I have two classes, one called Instruction, one called LDI which inherits from instruction class.</p> <pre><code>class Instruction{ protected: string name; int value; public: Instruction(string _name, int _value){ //constructor name = _name; value = _value; } ~Instruction(){} Instruction (const Instruction &amp;rhs){ name = rhs.name; value = rhs.value; } void setName(string _name){ name = _name; } void setValue(int _value){ value = _value; } string getName(){ return name; } int getValue(){ return value; } virtual void execute(){} virtual Instruction* Clone() { return new Instruction(*this); } }; /////////////end of instruction super class ////////////////////////// class LDI : public Instruction{ void execute(){ //not implemented yet } virtual Instruction* Clone(){ return new LDI(*this); } }; </code></pre> <p>Then I create a pointer of type Instruction and try to make point to a new instance of type LDI.</p> <pre><code>Instruction* ptr; ptr = new LDI("test", 22); </code></pre> <p>I get the following compiler errors. Any ideas what I'm doing wrong?</p> <pre><code>functions.h:71: error: no matching function for call to ‘LDI::LDI(std::string&amp;, int&amp;)’ classes.h:54: note: candidates are: LDI::LDI() classes.h:54: note: LDI::LDI(const LDI&amp;) </code></pre> http://stackoverflow.com/questions/1736480/c-new-operator-creating-a-new-instance -1 C++ new operator. Creating a new instance unknown (google) 2009-11-15T03:31:24Z 2009-11-15T07:31:39Z <p>I'm having some trouble creating an object in C++. I create a class called Instruction, and I am trying to create a new instance, but I get compiler errors.</p> <p>Class code:</p> <pre><code>class Instruction{ protected: string name; int value; public: Instruction(string _name, int _value); ~Instruction(); void setName(string _name); void setValue(int _value); string getName(); int getValue(); virtual void execute(); }; //constructor inline Instruction::Instruction(string _name, int _value){ name = _name; value = _value; } //destructor inline Instruction::~Instruction(){ //name = ""; //value = 0; } inline void Instruction::setName(string _name){ name = _name; } inline void Instruction::setValue(int _value){ value = _value; } inline string Instruction::getName(){ return name; } int Instruction::getValue(){ return value; } inline void Instruction::execute(){ cout &lt;&lt; "still have to implement"; } </code></pre> <p>This is how I try to create a new object:</p> <pre><code>Instruction* inst; inst = new Instruction("instruction33", 33); </code></pre> <p>I get the following compiler errors:</p> <pre><code>functions.h:70: error: no matching function for call to ‘operator new(unsigned int, std::string&amp;, int&amp;)’ /usr/include/c++/4.3/new:95: note: candidates are: void* operator new(size_t) /usr/include/c++/4.3/new:99: note: void* operator new(size_t, const std::nothrow_t&amp;) /usr/include/c++/4.3/new:105: note: void* operator new(size_t, void*) </code></pre> <p>You guys are correct. The error comes from this line of code:</p> <pre><code>instList.push_back(inst); </code></pre> <p>where instList is created like this:</p> <pre><code>list &lt;Instruction&gt; instList; //#include &lt;list&gt; is in the file </code></pre> http://stackoverflow.com/questions/1734009/asp-net-cookie-from-a-resource-project-a-general-info 0 asp.net cookie from a resource project (+ a general info) b0x0rz 2009-11-14T11:43:57Z 2009-11-14T11:46:18Z <p>i'd like to use a class to manage a certain cookie, but not directly on the page where i have access to all the <strong>httpcookie</strong> stuff like so <code>HttpContext.Current.Request.Cookies["CookieName"].Value;</code>.</p> <p>however i'd like to be able to do this from a class in another project. i have a reference to that project and can access the class, but there i do not have access to the <strong>httpcontext</strong>.</p> <p>so how do i get access to that, and how can i generally access all the stuff in an outside class that i can on the page directly?</p> <p>the reason for this is that this code is common and will be used on a lot of pages, so don't want to have it in multiple places.</p> <p><em>thnx</em><br> <strong><em>i hope i explained it correctly, ask if you need more info.</em></strong></p> http://stackoverflow.com/questions/484537/in-php-when-initializing-a-class-how-would-one-pass-a-variable-to-that-class-to-b 0 In php when initializing a class how would one pass a variable to that class to be used in its functions? Sam152 2009-01-27T18:10:17Z 2009-11-14T10:02:19Z <p>So here is the deal. I want to call a class and pass a value to it so it can be used inside that class in all the various functions ect. ect. How would I go about doing that?</p> <p>Thanks, Sam</p> http://stackoverflow.com/questions/1727266/template-classes-in-c-a-required-skill-set 0 Template Classes in C++ ... a required skill set? tim 2009-11-13T05:17:36Z 2009-11-13T15:59:55Z <p>I'm new to C++ and am wondering how much time I should invest in learning how to implement template classes. Are they widely used in industry, or is this something I should move through quickly?</p> http://stackoverflow.com/questions/1726927/json-with-classes 1 JSON with classes? Marius 2009-11-13T03:20:34Z 2009-11-13T04:50:27Z <p>Is there a standardized way to store classes in JSON, and then converting them back into classes again from a string? For example, I might have an array of objects of type Questions. I'd like to serialize this to JSON and send it to (for example) a JavaScript page, which would convert the JSON string back into objects. But it should then be able to convert the Questions into objects of type Question, using the constructor I already have:</p> <pre><code>function Question(id, title, description){ } </code></pre> <p>Is there a standardized way to do this? I have a few ideas on how to do it, but reinventing the wheel and so on.</p> <h2>Edit:</h2> <p>To clarify what I mean by classes: Several languages can use classes (JAVA, PHP, C#) and they will often communicate with JavaScript through JSON. On the server side, data is stored in instances of classes, but when you serialize them, this is lost. Once deserialized, you end up with an object structure that do not indicate what type of objects you have. JavaScript supports prototypal OOP, and you can create objects from constructors which will become typeof that constructor, for example Question above. The idea I had would be to have classes implement a JSONType interface, with two functions:</p> <pre><code>public interface JSONType{ public String jsonEncode();//Returns serialized JSON string public static JSONType jsonDecode(String json); } </code></pre> <p>For example, the Question class would implement JSONType, so when I serialize my array, it would call jsonEncode for each element in that array (it detects that it implements JSONType). The result would be something like this:</p> <pre><code>[{typeof:"Question", id:0, title:"Some Question", description:"blah blah blah"}, {typeof:"Question", id:0, title:"Some Question", description:"blah blah blah"}, {typeof:"Question", id:0, title:"Some Question", description:"blah blah blah"}] </code></pre> <p>The javascript code would then see the typeof attribute, and would look for a Question function, and would then call a static function on the Question object, similar to the interface above (yes, I realize there is a XSS security hole here). The jsonDecode object would return an object of type Question, and would recursively decode the JSON values (eg, there could be a comment value which is an array of Comments).</p> http://stackoverflow.com/questions/1724316/referencing-classes-in-python 2 Referencing classes in Python Tom R 2009-11-12T18:22:15Z 2009-11-12T18:35:36Z <p>Hi all</p> <p>I'm having a spot of bother with Python (using for app engine). I'm fairly new to it (more used to Java), but I had been enjoying....until now.</p> <p>The following won't work!</p> <pre><code>class SomeClass(db.Model): item = db.ReferenceProperty(AnotherClass) class AnotherClass(db.Model): otherItem = db.ReferenceProperty(SomeClass) </code></pre> <p>As far as I am aware, there seems to be no way of getting this to work. Sorry if this is a stupid question. Hopefully if that is the case, I will get a quick answer.</p> <p>Thanks in advance.</p> http://stackoverflow.com/questions/1713949/initializing-all-the-classes-is-this-good 0 Initializing all the classes ?? Is this good ? atif089 2009-11-11T09:08:14Z 2009-11-11T15:18:55Z <p>Hello, I am a PHP beginner. I have developed a social networking website similar to Orkut in PHP.</p> <p>The basic program flow of my website is redirect everything to index.php</p> <p>The index.php determines the $_SERVER['REQUEST_URI'] and does what needs to be done and render the output.</p> <p>I initiaze all the classes at the top of index.php I want to know if it is a good practice to do this or not.</p> <p>The index.php starts like this :-</p> <pre><code>// all the configuration files require_once ("siteconfig.php"); // include library files / classes require_once "lib/auth.php"; require_once "lib/album.php"; require_once "lib/db.php"; require_once "lib/form.php"; require_once "lib/inbox.php"; require_once "lib/social.php"; require_once "lib/profile.php"; require_once "lib/user.php"; require_once "lib/settings.php"; require_once "lib/validate.php"; require_once "lib/logs.php"; require_once "lib/sms.php"; // initialize all the classes $db = new db($dbuser, $dbpass, $dbname, $dbhost); $validate = new validate(); $auth = new auth(); $user = new user(); $profile = new profile(); $social = new social(); $settings = new settings(); $usersearch = new usersearch(); $album = new album(); $logs = new logs(); $liveupdates = new liveupdates(); $sms = new sms(); </code></pre> http://stackoverflow.com/questions/1713848/constants-or-a-register-class 0 Constants or a register class? meder 2009-11-11T08:38:39Z 2009-11-11T09:30:22Z <p>I've come across a Registry Class and I'm wondering whether to bother with this or just go constants, or are there separate uses for site-wide global variables such as database connection information, website URI, etc?</p> <p>Here's the class I came across:</p> <pre><code>&lt;?php Class Registry { private $vars = array(); public function __set($index, $value) { $this-&gt;vars[$index] = $value; } public function __get($index) { return $this-&gt;vars[$index]; } } ?&gt; </code></pre> <p>Basically just a class that has an array with magical getters/setters. Are there any disadvantages with this code as opposed to using constants?</p> http://stackoverflow.com/questions/1704108/getting-and-terminating-classs-threads-in-c 0 Getting and terminating class's/threads in C# Xavier 2009-11-09T21:48:54Z 2009-11-09T22:03:41Z <p>okay, so here is what im doing:</p> <pre><code>class Connection { public int SERVERID; private Thread connection; public Connection() { connection = new Thread(new ThreadStart(this.Run)); } public void Start(int serverid) { SERVERID = serverid; connection.Start(); } void Run() { while(true) { //do stuff here } } } </code></pre> <p>now, there is the class i need to manage, here is how im calling it:</p> <pre><code>static void Main(string[] args) { StartConnection(1); StartConnection(2); StartConnection(3); //etc } static void StartCOnnection(int serverid) { Connection connect = new Connection(); connect.Start(serverid); } </code></pre> <p>i was origanally trying to do somthing like this:</p> <pre><code>foreach(Connection connect in Connection) { if(connect.SERVERID == 2) { //destroy the thread, and class. } } </code></pre> <p>but that gets the error " 'Connection' is a 'type' but is used like a 'variable' ", and i dont know how to do that destroy the thread and class part...</p> <p>Summary: So what i basically need to do, is get a list of all the open Connetion class's, and be able to, based on the settings of the class be able to destroy it. how do i do this? </p> <p>~code examples please</p>