active questions tagged definition - Stack Overflowmost recent 30 from stackoverflow.com2009-12-08T11:27:45Zhttp://stackoverflow.com/feeds/tag/definitionhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1864615/how-to-declare-a-static-variable-but-not-define-it1How to declare a static variable but not define itNjuBee2009-12-08T04:35:09Z2009-12-08T05:41:32Z
<p>Some times we need to pre-declare a static variable and then use it.
But the variable name of this declaration may be wrong, and the compiler can not detect it, oops!</p>
<p>Example:</p>
<pre><code>/* lots of codes */
static some_type some_name; /* pre-declaration */
/* but it may define "some_name" */
/* use some_name */
/* lots of codes */
static some_type someName = initialization; /* definition */
/* use someName */
/* lots of codes */
</code></pre>
<p>"some_name" and "someName" are different, we use a wrong variable at the begin.
If the pre-declaration statement does not define any thing, the compiler will detect the mistake.</p>
<p>So, how to declare a static variable but not define it? How can I change the pre-declaration to a new one which makes compiler can detects wrong names? </p>
http://stackoverflow.com/questions/1317497/what-is-applescript-and-what-is-it-used-for0What is applescript and what is it used for?CrazyJugglerDrummer2009-08-23T01:23:21Z2009-12-07T00:10:44Z
<p>What is applescript and what is it used for?</p>
http://stackoverflow.com/questions/1852001/what-is-a-lambda-1What is a "lambda" ? [closed]daemonfire3002009-12-05T11:47:23Z2009-12-05T11:59:16Z
<blockquote>
<p><strong>Possible Duplicate:</strong><br>
<a href="http://stackoverflow.com/questions/1085875/what-is-this-lambda-everyone-keeps-speaking-of">What is this ‘Lambda’ everyone keeps speaking of</a> </p>
</blockquote>
<p>Hi there,</p>
<p>I often heard the word <em>lambda</em> but I never get used to it or what it does.</p>
<p>I SO'ed, googled, looked on wikis and portals, but what I found was mathematical explanations of lambda calculus</p>
<p>So I ask what does it mean in a programming context?</p>
http://stackoverflow.com/questions/1847822/name-collision-in-c2name collision in C++Neeraj2009-12-04T15:47:36Z2009-12-04T18:34:54Z
<p>Hi all,<br>
While writing some code i came across this issue:
<pre><code>
#include <iostream></p>
<p>class random
{
public:
random(){ std::cout << "yay!! i am called \n" ;}
};</p>
<p>random r1 ;</p>
<p>int main()
{
std::cout << "entry!!\n" ;
static random r2;
std::cout << "done!!\n" ;
return 0 ;
}
</pre></code></p>
<p>When i try to compile this code i get the error<br>
<code>error: ârandomâ does not name a type.</code><br>
When I use some different name for the class the code works fine.<br>
Seems like <code>random</code> is defined somewhere else(although the compiler message is not very informative). </p>
<p>My question is how can i assure that a name i am using doesn't collides with a name used in included files. I have tried using namespaces but that leads to ambiguity at the time of call.
Any insights?<br>
<b>[EDIT]</b><br>
I used namespaces as <code>using namespace myNSpace</code><br>
But when i used it as <code>use myNSpace::random</code> it worked fine.</p>
http://stackoverflow.com/questions/1760850/best-practice-ordering-of-public-protected-private-within-the-class-definition3Best practice: ordering of public/protected/private within the class definition?tempname2009-11-19T04:22:20Z2009-11-30T19:13:47Z
<p>I am starting a new project from the ground up and want it to be clean / have good coding standards. In what order do the seasoned developers on here like to lay things out within a class?</p>
<p>A : 1) public methods 2) private methods 3) public vars 4) private vars</p>
<p>B : 1) public vars 2) private vars 3) public methods 4) private methods</p>
<p>C : 1) public vars 2) public methods 3) private methods 4)private vars</p>
<p>I generally like to put public static vars at the top, but then would a public static method be listed ahead of your constructor, or should the constructor always be listed first? That sort of thing...</p>
<p>I know it's finnicky but I just wondered: what are best practices for this?</p>
<p><em>PS: no I don't use Cc#. I know. I'm a luddite.</em></p>
http://stackoverflow.com/questions/1801957/what-exactly-does-closure-refer-to-in-javascript4What exactly does "closure" refer to in JavaScript?Andreas Grech2009-11-26T06:52:57Z2009-11-30T12:27:18Z
<p>I understand what closures are, but I am having some trouble grokking exactly what the term <code>closure</code> refers to. I have seen the term used in many websites, but rarely do they agree on the actual definition of it.</p>
<ul>
<li>Is it the variables that are kept on the stack frame?</li>
<li>Is it the function that is being returned?</li>
<li>Is it the scope of the outer function?</li>
<li>Is it the scope of the inner (returned) function?</li>
<li>Is it maybe the <strong>concept</strong> of keeping the variables on the stack-frame after returning the function?</li>
</ul>
<p>Can someone tell me exactly to what <code>closure</code> refers to?</p>
http://stackoverflow.com/questions/1811069/sharepoint-upgrade-map-custom-site-definition-to-out-of-the-box-definition0Sharepoint upgrade: Map custom site definition to out of the box definitionDL2009-11-28T00:05:09Z2009-11-28T00:05:09Z
<p>I'm currently working on upgrading a Sharepoint 2003 installation to a Sharepoint 2007 installation. I am using a custom site definition in 2003 and would like to map that to the out of the box "Team Site" definition in 2007. Assume my custom site definition is called CustomSiteDef. I have created an upgrade definition file called CustomSiteDefUpgrade.xml. When I perform the upgrade it complains about not finding onet.xml. The upgrade is looking for a site definition on the 2007 installation of the same name and cannot find it. I never created this site definition in 2007 because I was planning to map it to the out of the box Team Site definition. The question is how do I map the custom site definition in 2003 to an out of the box definition in 2007?</p>
http://stackoverflow.com/questions/1581441/problem-with-method-defined-in-vc-header-file0Problem with method defined in VC++ header fileunknown (google)2009-10-17T04:47:47Z2009-11-24T05:29:22Z
<p>I have a class in a DLL that's used in many other DLLs and EXEs. It has a couple of methods defined in the include file (i.e. the method body is in the .h file) that's included in the other binaries. One of them is giving me fits: <code>int GetVersion() { return nVersion; }</code>. </p>
<p>It is always returning <code>-842150451</code>, but when I run in the debugger and look at the class member variables, <code>nVersion</code> is <code>100</code>.</p>
<p>Any ideas as to how to debug this problem? I am really stuck.</p>
<p>(Note: This has been working fine for a decade! But now we are moving our code from VC6.0 to VS2005, and it has not been smooth...)</p>
http://stackoverflow.com/questions/242293/are-you-a-good-or-bad-programmer18Are you a good or bad programmer?Eli2008-10-28T05:09:48Z2009-11-19T13:35:28Z
<p>Hi All,</p>
<p>I see a lot of questions on SO that are asked about 'good' programmers vs 'bad' programmers.</p>
<p>For example, what is a good/bad programmer, how to tell a good/bad programmer, what to do about a bad programmer on a team, how to hire a good programmer.</p>
<p>I know it's pretty easy to apply the words to other people, but I find myself wondering if anyone out there would actually define THEMSELVES in a Boolean fashion like this, rather than "good in some areas, weak in others..."</p>
<p>I'm not asking as an either/or where you have to be one or the other, but as a 'both' - are you a good or bad programmer? </p>
<p>If so (either one), why?</p>
<p>Please note this isn't meant to be argumentative, or to define good/bad practices, etc. I just want to know how many people think they are good, bad, or neither out there.</p>
http://stackoverflow.com/questions/93526/what-is-a-y-combinator26What is a y-combinator?Turbulent Intellect2008-09-18T15:21:02Z2009-11-15T22:16:38Z
<p>A y-combinator is a comp-sci concept from the "functional" side of things. Most programmers don't know much at all about them, if they've even heard about them.</p>
<p>What is a y-combinator?
How do they work?
What are they good for?
Are they useful in procedural languages?</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/1724316/referencing-classes-in-python2Referencing classes in PythonTom R2009-11-12T18:22:15Z2009-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/1007213/phpeclipse-jump-to-function-definition0phpeclipse: jump to function definition?John Doe2009-06-17T14:00:42Z2009-11-12T04:49:22Z
<p>from zend's IDE i know that Ctrl+left click on a function name opens the corresponding source file and jumps to the functions definition</p>
<p>is there anything similar in eclipse especially phpeclipse OR CDT?
im not sure if its just a window->preferences setting i dont see OR some kind of source code indexing i may have disabled which also dont find in the settings (if available)</p>
<p>anyone knows the right settings?
im using eclipse 3.4.1 with pdt 2.0.0.v20081229</p>
<p>thanks all</p>
http://stackoverflow.com/questions/1659386/what-are-the-boundaries-or-scope-definitions-of-html5-development4What are the boundaries or scope definitions of HTML5 development?austin cheney2009-11-02T04:08:20Z2009-11-11T00:37:05Z
<p>From reading the mailing lists and looking at the specification I cannot tell what the limits of HTML5 are as a software or programmatic technology. I have seen where they have attempted to standardize video and audio formats in HTML5 and it seems they may be writing the definitions for XHTML5 into the HTML5 specification. It also appears the specification is extremely lengthy and covers topics far outside the mere definitions and minimally required processing instructions of a markup language.</p>
<p>With version 5 is HTML now an application interface opposed to just a markup language? If so then what are the boundaries and defined limits of the technology? If not, then why are so many topics irrelevant to the processing of markup taking such a spotlight in the development process of the technology? When do the boundaries of a markup language end and the application preferences of a user-agent application begin? With HTML5 that separation does not appear very clear, but as an industry standard it should be crystal clear, right?</p>
http://stackoverflow.com/questions/939465/what-does-the-term-legacy-database-mean4What does the term legacy database mean?johnny2009-06-02T13:18:25Z2009-11-10T03:51:23Z
<p>I read this term a lot. What exactly is a legacy database? I ask because I had thought it meant an old database like dbase or rdb, but I don't think I'm right.</p>
<p>When looking at RoR or Django and "legacy database" integration, what does legacy database really mean? Is it different than a generic term "legacy database"?</p>
http://stackoverflow.com/questions/1677157/can-size-of-array-be-determined-at-run-time-in-c2can size of array be determined at run time in c?tsubasa2009-11-04T22:35:20Z2009-11-04T22:52:35Z
<p>As I know, an array needs to have a specific size before compiling time in c. </p>
<p>I wonder why this code still works?</p>
<pre><code>int s;
printf("enter the array size: ");
scanf("%d",&s);
int a[s]; // Isn't s value determined at run time?
</code></pre>
http://stackoverflow.com/questions/1646021/how-to-association-workflow-on-creating-of-list-definition1How to association workflow on creating of list definitionAvinash2009-10-29T19:30:41Z2009-11-02T21:28:51Z
<p>Hi,</p>
<p>I have my custom content type, and list definition. Once we create a list from this template, by default I wish to enable "Require content approval for submitted items", "Create major and minor (draft) versions", "Enable scheduling of items in this list " and approval workflow association.</p>
<p>My list look as :-</p>
<p></p>
<p>Also i tried added all view fields which is available in "C:\Program Files\Common Files\microsoft shared\Web Server Extensions\12\TEMPLATE\FEATURES\Publishing" schema.
But still does not work.</p>
<p>In Sharepoint site, i created a list enable all required property and work flow association save as list temlate. After that i opened manifest file from list template and copied workflow association attribute details.
But still does not work. </p>
<p>could any one guide me please?</p>
<p>Thanks
Avinash</p>
http://stackoverflow.com/questions/1663446/controllers-in-the-context-of-composite-wpf0Controllers in the context of Composite WPFemddudley2009-11-02T20:20:27Z2009-11-02T20:20:27Z
<p>What is a Controller in the context of Composite WPF?</p>
http://stackoverflow.com/questions/1634881/using-variables-in-an-array-passed-to-a-def-rails0Using variables in an array passed to a def - RailsRyan2009-10-28T02:28:09Z2009-10-28T02:40:29Z
<p>I'm using the Google charts API to generate a pie chart in my Rails application. However, I'm having a problem passing local variables to the def in the helper. The def takes a 2D array of [label, value] pairs. It doesn't like it when I try to pass a local variable in as the value. These are calculated ahead of time and are in currency format. Putting the variable in quotes or in <code>#{}</code> doesn't work either.</p>
<h3>application_helper.rb</h3>
<pre><code> def pie_chart(data, options = {})
options[:width] ||= 250
options[:height] ||= 100
options[:colors] = %w(F5DD7E 0DB2AC FC8D4D FC694D FABA32 704948 968144 C08FBC ADD97E)
dt = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-."
options[:divisor] ||= 1
options[:title] ||= "Energy Costs"
while (data.map { |k,v| v }.max / options[:divisor] >= 4096) do
options[:divisor] *= 20
end
opts = {
:cht => "p",
:chd => "e:#{data.map{|k,v|v=v/options[:divisor];dt[v/64..v/64]+dt[v%64..v%64]}}",
:chl => "#{data.map { |k,v| CGI::escape(k)}.join('|')}",
:chs => "#{options[:width]}x#{options[:height]}",
:chco => options[:colors].slice(0, data.length).join(','),
:chf => "bg,s,FFFFFF00",
:chtt => "#{options[:title]}"
}
</code></pre>
<p>The def call in the view:</p>
<pre><code><%= pie_chart( [["Light Cost", #{light_cost}], ["Small Appliance Cost", #{sm_appl_cost}]], :width => 550, :height => 200) %>
</code></pre>
<p>How do I pass the local variables?</p>
http://stackoverflow.com/questions/1622506/programming-definitions-what-exactly-is-building1Programming Definitions: What exactly is 'Building'. contactmatt2009-10-25T23:46:03Z2009-10-26T00:19:52Z
<p>What does it mean to <strong>BUILD</strong> a solution/project/program? I want to make sure I have my definitions correct (so I don't sound like a idiot when conversing). In IDE's, you can (correct me if I'm wrong) <strong>compile</strong> source-code/programming-code into computer-readable machine code. You can <strong>debug</strong> a program, which is basically stepping through the program and looking for errors. </p>
<p>But what exactly doe's <strong>building</strong> a program do? In VS im aware that when you build a program it produces a executable file in a debug folder. Any hard-core tech definitions of what it means to <strong>BUILD</strong> a program? </p>
http://stackoverflow.com/questions/1599039/php-word-definition-script5PHP: word definition script?Prashant2009-10-21T06:26:18Z2009-10-21T09:39:15Z
<p>I am developing a web page in which I am accepting input words from user and when user will submit those words then I want to display definition of those words or wikipedia link of those words for more definition about that word. Something like below:</p>
<p>Let's say user enetered 5 words:</p>
<pre><code>toast, egg, beans, coffee, tea
</code></pre>
<p>Now I want to display them like:</p>
<pre><code>toast › slices of bread that have been toasted
egg › animal reproductive body consisting of an ovum or embryotogether with nutritive and protective envelopes
beans › a small skullcap <link to wikipedia>read more on wikipedia</link>
coffee › a beverage consisting of an infusion of ground coffee beans
tea › a beverage made by steeping tea leaves in water <link to wikipedia>read more on wikipedia</link>
</code></pre>
<p>For those there is no article on wikipedia then no wiki link will be displayed for those words.</p>
<p>Can you guyz please suggest me some opensource PHP script or package which will do this for me, or suggest me some ideas about how to do this in PHP.</p>
<p>I am more interested in getting data from some other website directly instead of storing word definitions in my database.</p>
<p>I am using <strong>PHP - MYSQL</strong></p>
http://stackoverflow.com/questions/1570215/what-is-the-actual-definition-of-an-array7What is the actual definition of an array? [closed]Ollie Saunders2009-10-15T03:58:53Z2009-10-15T07:31:12Z
<blockquote>
<p><strong>Possible Duplicate:</strong><br />
<a href="http://stackoverflow.com/questions/392397/arrays-whats-the-point">Arrays, What’s the point?</a> </p>
</blockquote>
<p>I tried to ask this question before in <a href="http://stackoverflow.com/questions/992679/what-is-the-difference-between-an-array-and-a-list-closed">What is the difference between an array and a list?</a> but my question was closed before reaching a conclusive answer (<a href="http://meta.stackoverflow.com/questions/25948/why-is-my-question-not-real/">more about that</a>). </p>
<p>I'm trying to understand what is really meant by the word "array" in computer science. I am trying to reach an answer not have a discussion as per the spirit of this website. What I'm asking is language agnostic but you may draw on your knowledge of what arrays are/do in various languages that you've used.</p>
<p><strong>Ways of thinking about this question:</strong> </p>
<ul>
<li>Imagine you're designing a new programming language and you decide to implement arrays in it; what does that mean they do? What will the properties and capabilities of those things be. If it depends on the type of language, how so?</li>
<li>What makes an array an array?</li>
<li>When is an array not an array? When it is, for example, a list, vector, table, map, or collection?</li>
</ul>
<p>It's possible there isn't one precise definition of what an array is, if that is the case then are there any standard or near-standard assumptions or what an array is? Are there any common areas at least? Maybe there are several definitions, if that is the case I'm looking for the most precision in each of them.</p>
<p><strong>Language examples:</strong></p>
<p>(Correct me if I'm wrong on any of these).</p>
<ul>
<li>C arrays are contiguous blocks of memory of a single type that can be traversed using pointer arithmetic or accessed at a specific offset point. They have a fixed size.</li>
<li>Arrays in JavaScript, Ruby, and PHP, have a variable size and can store an object/scalar of any type they can also grow or have elements removed from them.</li>
<li>PHP arrays come in two types: numeric and associative. Associative arrays have elements that are stored and retrieved with string keys. Numeric arrays have elements that are stored and retrieved with integers. Interestingly if you have: <code>$eg = array('a', 'b', 'c')</code> and you <code>unset($eg[1])</code> you still retrieve <code>'c'</code> with <code>$eg[2]</code>, only now <code>$eg[1]</code> is undefined. (You can call <code>array_values()</code> to re-index the array). You can also mix string and integer keys.</li>
</ul>
<p>At this stage of sort of suspecting that C arrays are the only true array here and that strictly-speaking for an array to be an array it has to have all the characteristics I mention in that first bullet point. If that's the case then — again these are suspicions that I'm looking to have confirmed or rejected — arrays in JS and Ruby are actually vectors, and PHP arrays are probably tables of some kind.</p>
<p>Final note: I've made this community wiki so if answers need to be edited a few times in lieu of comments, go ahead and do that. Consensus is in order here.</p>
http://stackoverflow.com/questions/1564817/declare-but-not-define-inner-struct-class-legal-c-or-not3Declare but not define inner struct/class - legal C++ or not?Suma2009-10-14T07:42:29Z2009-10-14T08:11:39Z
<p>Is following code legal C++ or not?</p>
<pre><code>class Foo
{
class Bar;
void HaveADrink(Bar &bar);
void PayForDrinks(Bar &bar);
public:
void VisitABar(int drinks);
};
class Foo::Bar
{
public:
int countDrinks;
};
void Foo::HaveADrink(Bar &bar)
{
bar.countDrinks++;
}
void Foo::PayForDrinks(Bar &bar)
{
bar.countDrinks = 0;
}
void Foo::VisitABar(int drinks)
{
Bar bar;
for (int i=0; i<drinks; i++) HaveADrink(bar);
PayForDrinks(bar);
}
</code></pre>
<p>Both Visual C++ and GCC accepts it, however the code seems somewhat strange to me and I would hate to have it refused by some future compiler.</p>
<p>Still, the pattern seems useful to me to reduce compile time dependencies - I often use it to declare structs which are used to pass some "context" (a bunch of variables) which are shared between a few functions which all reside in the same cpp file, and this way I do not have to introduce the "context" definition into the public interface.</p>
http://stackoverflow.com/questions/1158518/what-is-code-coverage4What is Code Coverage?n00ki32009-07-21T11:02:05Z2009-10-12T21:02:08Z
<p>Hi there ,<br />
I have 3 questions : </p>
<ul>
<li>What is CodeCoverage ?</li>
<li>What is it good for ?</li>
<li>What tools are used for
analyzing Code Coverage ?</li>
</ul>
http://stackoverflow.com/questions/1548729/c-class-function-members-declaration-implementation1C# Class function members declaration & implementationKrugar2009-10-10T18:41:06Z2009-10-10T19:06:30Z
<p>Is there a concept in C# of class definition and implementation similar to what you find in C++?</p>
<p>I prefer to keep my class definitions simple by removing most, if no every, implementations details (it depends on several factors as you may know, but generally I move towards leaving most member implementation details outside the class definition). This has the benefit of giving me a bird's eye view of the class and its functionality.</p>
<p>However in C# it seems I'm forced to define my member functions at the point of declaration. Can this be avoided, or circumvent some way?</p>
<p>During my apprenticeship of C#, this is one aspect that is bothering me. Classes, especially complex ones, become increasingly harder to read.</p>
http://stackoverflow.com/questions/56860/what-is-the-liskov-substitution-principle18What is the Liskov Substitution Principle?NotMyself2008-09-11T15:17:38Z2009-10-07T02:44:33Z
<p>I have heard that the Liskov Substitution Principle (LSP) is a fundamental principle of object oriented design. What is it and what are some examples of its use?</p>
http://stackoverflow.com/questions/1020070/when-do-i-define-objective-c-methods5When do I define objective-c methods?Clinton Blackmore2009-06-19T21:21:24Z2009-10-06T17:56:17Z
<p>I'm learning Objective-C, and have a C/C++ background. </p>
<ul>
<li><p>In object-oriented C++, you always need to declare your method before you define (implement) it, even if it is declared in the parent class. </p></li>
<li><p>In procedural-style C, IIRC, you can get away with just defining a function so long as it is only called from something else in the same compilational unit (ie. the same file) that came later on in the file (well, provided you don't declare it elsewhere with "extern").</p></li>
<li><p>Now, in Objective-C, it appears that you only need to declare selectors in the header file if they are going to be used by something external, and that you can make up selectors in your .m file just fine, and call them within the .m file. Also, it appears that delegate methods or inherited methods are never (re)defined.</p></li>
</ul>
<p>Am I on the right track? When do you need to define a selector in Objective-C?</p>
http://stackoverflow.com/questions/1497600/how-to-reuse-a-uilabel-or-any-object1How to reuse a UILabel? (Or any object)david2009-09-30T11:37:16Z2009-09-30T12:09:20Z
<p>This:</p>
<pre><code> UILable *myLabel = [[UILabel alloc] init];
UILable *myLabel = [[UILabel alloc] init];
</code></pre>
<p>gives me a redefinition error.</p>
<p>But this:</p>
<pre><code> for(i=0;i<5;i++)
{
UILable *myLabel = [[UILabel alloc] init];
// some label code here
[self.view addSubview:myLabel];
[myLabel release];
}
</code></pre>
<p>doesn't. So is the second one false? Should I define it before and just reuse it?</p>
<p>Is that right:</p>
<pre><code> UIIMageView *Sign;
//Some Sign Stuff
Sign = [[UIImageView alloc]init];
Sign.image = [UIImage imageNamed:@"Minus.png"];
frame = CGRectMake(160 ,80, 64, 64);
Sign.frame = frame;
[scrollView addSubview:Sign];
Sign = nil;
[Sign release];
//Some other Sign stuff
Sign = [[UIImageView alloc]init];
Sign.image = [UIImage imageNamed:@"Plus.png"];
frame = CGRectMake(200 ,80, 64, 64);
Sign.frame = frame;
[scrollView addSubview:Sign];
Sign = nil;
[Sign release];
</code></pre>
<p>is that correct? That doesnt work without the Sign = nil. So it seems a little wobbly too.</p>
http://stackoverflow.com/questions/1495287/what-does-net-stand-for-is-it-an-acronym9What does .NET stand for? Is it an acronym?shaunmartin2009-09-29T22:28:35Z2009-09-30T05:57:13Z
<p>I've seen <a href="http://msdn.microsoft.com/en-us/library/aa155747%28office.10%29.aspx" rel="nofollow">pronunciation guides</a> and all sorts of definitions of .NET as a <em>framework</em>, but no definition or explanation of the actual <em>name</em> of the framework.</p>
<p><a href="http://en.wikipedia.org/wiki/.net%5Fframework" rel="nofollow">Wikipedia</a> doesn't seem to know. <a href="http://stackoverflow.com/questions/165408/what-programming-acronyms-do-you-frequently-use-without-knowing-the-meaning-of">This question</a> didn't cover it. </p>
<p>Anybody know? Is it pure marketing-generated nonsense, or does it mean something?</p>
http://stackoverflow.com/questions/1480318/cleanest-way-to-define-classes-in-python2Cleanest way to define classes in Python?Omega2009-09-26T03:05:49Z2009-09-26T13:37:40Z
<p>I want to define classes in Python, but I'm currently putting them in modules, contained within packages.</p>
<p>Is there a cleaner way of doing this? Is it okay to define classes in <code>__init__.py</code> of the package itself?</p>
<p>I'm still learning how to arrange my Python source code, but this seems to be creating a slight ambiguity?</p>
<p>Thanks to all!</p>