active questions tagged static - Stack Overflowmost recent 30 from stackoverflow.com2009-12-02T12:55:15Zhttp://stackoverflow.com/feeds/tag/statichttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/374084/does-google-analytics-make-a-major-effect-on-time-to-download-a-static-web-page13does Google analytics make a major effect on time to download a static web page?michaelanthonycarroll2008-12-17T09:38:06Z2009-12-02T08:16:21Z
<p>Hi, I understand that by simply adding a script to the end of the body tag of a html document one makes it processable by Google analytics. My question is, is this likely to have much effect on performance (download time and server load)? Let's assume a static page of say 100k served by IIS. Thanks.</p>
http://stackoverflow.com/questions/1825478/django-on-webfaction-serving-static-admin-media-files-configuration0Django on Webfaction: Serving static admin media files - configurationHoff2009-12-01T11:05:16Z2009-12-01T14:52:50Z
<p>hi folks,</p>
<p>I having trouble serving Django's static admin files on webfaction.</p>
<p>Here's how I'm currently set up:</p>
<ul>
<li><p>I've created a 'Symbolic link to
static-only app', and provided the
link to Django admin files in 'extra
info':
<code>/home/myusername/webapps/mydjangoapp/lib/python2.5/django/contrib/admin/media</code>
(cd'ing into that directory works
fine)</p></li>
<li><p>I've added this app to my django
website, and specified <code>/media</code> as the
URL path.</p></li>
<li><p>In my django settings,
<code>ADMIN_MEDIA_PREFIX = '/media/'</code> (my
static files are prefixed with
/static/, so there's no conflict
here)</p>
<p>In the source code of an admin page,
I can see that admin media is
correctly linked, e.g. <code><link
rel="stylesheet" type="text/css"
href="/media/css/base.css" /></code></p></li>
</ul>
<p>However, following the link I get a 404 page (from nginx).</p>
<p>I've played around with this forever now, so any ideas what might be wrong here, or any recommendations on how to troubleshoot this would be really appreciated!</p>
<p>Thanks in advance,</p>
<p>Martin</p>
http://stackoverflow.com/questions/1820477/c-static-virtual-members3C++ static virtual members?cvb2009-11-30T15:26:46Z2009-12-01T09:27:03Z
<p>Is it possible in C++ to have a member function that is both static and virtual? Apperantly, there isn't a straight-forward way to do it (<code>static virtual member();</code> is a complie error), but at least a way to acheive the same effect?</p>
<p>I.E:</p>
<pre><code>struct Object
{
struct TypeInformation;
static virtual const TypeInformation &GetTypeInformation() const;
};
struct SomeObject : public Object
{
static virtual const TypeInformation &GetTypeInformation() const;
};
</code></pre>
<p>It makes sence to use <code>GetTypeInformation()</code> both on an instance (<code>object->GetTypeInformation()</code>) and on a class (<code>SomeObject::GetTypeInformation()</code>), which can be useful for comparsions and vital for templates.</p>
<p>The only ways I can think of involves writing two functions / a function and a constant, per class, or use macros.</p>
<p>Any other solutions?</p>
http://stackoverflow.com/questions/1823027/is-there-a-static-constrctors-destructors-help-topic2Is there a Static Constrctors/Destructors Help topicGad D Lord2009-11-30T23:00:58Z2009-12-01T00:26:10Z
<p>I know in D2010 they have added support for static constructors and destructors.
Where I can find more information about they: syntax and samples?</p>
http://stackoverflow.com/questions/1816650/nginx-location-alias-rewrite-root0Nginx location, alias, rewrite, rootskyl2009-11-29T20:21:48Z2009-12-01T00:02:34Z
<p>I'm serving /foo/bar/ by way of proxypass and want to continue doing so. However, I would like to serve /foo/bar/baz.swf statically from say /var/www/mystatic/baz.swf and so forth.</p>
<p>I was hoping that I could do something like</p>
<pre><code> location /foo/bar/(.*) {
alias /var/www/mystatic/;
}
location / {
proxy_pass ....;
...
}
</code></pre>
<p>And /foo/bar/ would go to the application server while /foo/bar/(.*) would be served statically.</p>
<p>the docs say that I can't do this and need to use a combination of root and rewrite: <a href="http://wiki.nginx.org/NginxHttpCoreModule" rel="nofollow">http://wiki.nginx.org/NginxHttpCoreModule</a></p>
<p>Adding to the complication, I would like to continue using the ancient, unsupported 0.5.33. Any help would b greatly appreciated.</p>
<p>Edit: moving forward, someone suggested using root instead of alias. But, it doesn't seem that I can use any regex on the location directive with my version? Here, /foo/bar/baz.swf is served by the proxy_pass! I have the file at /var/www/foo/bar/baz.swf.</p>
<pre><code> location /foo/bar/(.+) {
root /var/www/;
}
</code></pre>
http://stackoverflow.com/questions/999066/why-does-php-5-2-disallow-abstract-static-class-methods3Why does PHP 5.2 disallow abstract static class methods?Artem Russakovskii2009-06-16T00:07:03Z2009-11-30T06:51:21Z
<p>After enabling strict warnings in PHP 5.2, I saw a load of strict standards warnings from a project that was originally written without strict warnings:</p>
<blockquote>
<p><strong>Strict Standards</strong>: <strong>Static function</strong> Program::getSelectSQL() <strong>should not be abstract</strong> in Program.class.inc</p>
</blockquote>
<p>The function in question belongs to an abstract parent class Program and is declared abstract static because it should be implemented in its child classes, such as TVProgram.</p>
<p>I did find references to this change <a href="http://php.mirror.facebook.net/manual/en/migration52.incompatible.php" rel="nofollow">here</a>:</p>
<blockquote>
<p>Dropped abstract static class functions. Due to an oversight, PHP 5.0.x and 5.1.x allowed abstract static functions in classes. As of PHP 5.2.x, only interfaces can have them. </p>
</blockquote>
<p>My question is: can someone explain in a clear way why there shouldn't be an abstract static function in PHP?</p>
http://stackoverflow.com/questions/1717625/is-the-following-utility-class-thread-safe2Is the following utility class thread-safe?LES22009-11-11T19:51:49Z2009-11-29T20:21:57Z
<p>First let's look at the utility class (most javadoc has been removed to simply the example):</p>
<pre><code>public class ApplicationContextUtils {
/**
* The application context; care should be taken to ensure that 1) this
* variable is assigned exactly once (in the
* {@link #setContext(ApplicationContext)} method, 2) the context is never
* reassigned to {@code null}, 3) access to the field is thread-safe (no race
* conditions can occur)
*/
private static ApplicationContext context = null;
public static ApplicationContext getContext() {
if (!isInitialized()) {
throw new IllegalStateException(
"Context not initialized yet! (Has the "
+ "ApplicationContextProviderBean definition been configured "
+ "properly and has the web application finished "
+ "loading before you invoked this method?)");
}
return context;
}
public static boolean isInitialized() {
return context == null;
}
@SuppressWarnings("unchecked")
public static <T> T getBean(final String name, final Class<T> requiredType) {
if (requiredType == null) {
throw new IllegalArgumentException("requiredType is null");
}
return (T) getContext().getBean(name, requiredType);
}
static synchronized void setContext(final ApplicationContext theContext) {
if (theContext == null) {
throw new IllegalArgumentException("theContext is null");
}
if (context != null) {
throw new IllegalStateException(
"ApplicationContext already initialized: it cannot be done twice!");
}
context = theContext;
}
private ApplicationContextUtils() {
throw new AssertionError(); // NON-INSTANTIABLE UTILITY CLASS
}
}
</code></pre>
<p>Finally, there is the following helper Spring managed bean that actually calls the 'setContext' method:</p>
<pre><code>public final class ApplicationContextProviderBean implements
ApplicationContextAware {
public void setApplicationContext(
final ApplicationContext applicationContext) throws BeansException {
ApplicationContextUtils.setContext(applicationContext);
}
}
</code></pre>
<p>Spring will call the setApplicationContext method once after the app is started. Assuming a nincompoop has not previously called ApplicationContextUtils.setContext(), that should lock in the reference to the context in the utility class, allowing calls to getContext() to success (meaning that isInitialized() returns true).</p>
<p>I just want to know if this class violates any principles of good coding practices, with respect to thread safety in particular (but other stupidities found are welcome).</p>
<p>Thanks for helping me to become a better programmer, StackOverflow!</p>
<p>Regards,
LES</p>
<p>P.S. I didn't go into <em>why</em> I need this utility class - let it suffice that I indeed do have a legitimate need to access it from a static context anywhere in the application (after the spring context has loaded, of course).</p>
http://stackoverflow.com/questions/1815628/static-fields-question1Static fields questionDarkmage2009-11-29T14:12:30Z2009-11-29T14:21:49Z
<p>im trying to understand the get and set properties for fields, and run in to this issue, can somone explaine to me why i had to make the int X field Static to make this work?</p>
<pre><code>using System;
namespace ConsoleApplication1
{
class Program
{
public static int X = 30;
public static void Main()
{
var cX = new testme();
cX.intX = 12;
Console.WriteLine(cX.intX);
cX.intX = X;
Console.WriteLine(cX.intX);
Console.ReadKey();
}
}
class testme
{
public int intX
{
get;
set;
}
}
}
</code></pre>
http://stackoverflow.com/questions/1814769/thought-i-understood-static-classes0Thought I understood static classesfieldingmellish2009-11-29T05:45:17Z2009-11-29T05:53:53Z
<p>Trying to construct a helper class that will return an arraylist, but I'm getting the following error, having to do with the xml document I need to create:</p>
<blockquote>
<p>Util.oDocument': cannot declare instance members in a static class</p>
</blockquote>
<p>I think I understand why you wouldn't want to create a new xmldoc object each time this method gets called, but I need that doc in there for the functionality. How should I be approaching this? </p>
<pre><code>using System;
using System.Collections;
using System.Xml;
public static class Util
{
public static ArrayList multipleArtistList(string artistName)
{
XmlDocument oDocument = new XmlDocument();
string uri = "http://api.leoslyrics.com/api_search.php?auth=duane&artist=" + artistName;
oDocument.Load(uri);
XmlNodeList results = oDocument.GetElementsByTagName("name");
ArrayList artistList = new ArrayList();
for (int i = 0; i < results.Count; i++)
{
if (!artistList.Contains(results[i].InnerText))
{
artistList.Add(results[i].InnerText);
}
}
return artistList;
}
}
</code></pre>
http://stackoverflow.com/questions/1812329/anyone-has-an-alternative-to-using-static-methods-in-a-c-interface0Anyone has an alternative to using static methods in a C# interface?unknown (google)2009-11-28T11:40:33Z2009-11-28T15:00:11Z
<p>I want to implement a collection, whose items need to be tested for emptiness.
In case of a reference type, one would test for being null. For value types, one has to implement empty testing, and probably choose a specific value that represents emptyness.</p>
<p>My generic collection of T should be usable for both value and reference type values (meaning that <code>Coll<MyCalss></code> and <code>Coll<int></code> should both be possible). But I have to test reference and value types differently.</p>
<p>Wouldn't it be nice to have an interface that implements an IsEmpty() method, to exclude this logic from my generic type? But of course, this IsEmpty() method cannot be a member function: it could not be called on empty objects.</p>
<p>One workaround I found is to have collection items stored as objects, rather then T-s, but it gives me a headache (around boxing and being strongly typed). In good old C++ it was no problem :-)</p>
<p>The code below demonstrates what I'd like to achieve:</p>
<pre><code>using System;
using System.Collections.Generic;
namespace StaticMethodInInterfaceDemo
{
public interface IEmpty<T>
{
static T GetEmpty(); // or static T Empty;
static bool IsEmpty(T ItemToTest);
}
public class Coll<T> where T : IEmpty<T>
{
protected T[] Items;
protected int Count;
public Coll(int Capacity)
{
this.Items = new T[Capacity];
this.Count = 0;
}
public void Remove(T ItemToRemove)
{
int Index = Find(ItemToRemove);
// Problem spot 1: This throws a compiler error: "Cannot convert null to type parameter 'T'
// because it could be a non-nullable value type. Consider using 'default(T)' instead."
this.Items[Index] = null;
// To overcome, I'd like to write this:
this.Items[Index] = T.Empty; // or T.GetEmpty(), whatever.
this.Count--;
}
public T[] ToArray()
{
T[] ret = new T[this.Count];
int TargetIndex = 0;
for(int Index = 0; Index < this.Items.GetLength(0); Index++)
{
T Item = this.Items[Index];
// Problem spot 2: This test is not correct for value types.
if (Item != null)
ret[TargetIndex++] = Item;
// I'd like to do this:
if (!T.IsEmpty(Item))
ret[TargetIndex++] = Item;
}
return ret;
}
protected int Find(T ItemToFind)
{
return 1; // Not implemented in the sample.
}
}
}
</code></pre>
http://stackoverflow.com/questions/1812612/static-text-within-text-field0Static text within text field?tarnfeld2009-11-28T14:23:40Z2009-11-28T14:25:50Z
<p>How can i keep static text within a <code><input type="text" name="site"></code> text field, just like the tumblr account ***.tumblr.com here > <a href="http://www.tumblr.com/" rel="nofollow">http://www.tumblr.com/</a></p>
http://stackoverflow.com/questions/1645115/launch-apache-2-2-on-static-ip0Launch Apache 2.2 on static IPunb2009-10-29T16:55:45Z2009-11-28T00:44:39Z
<p>Is there any way to launch Apache server on my laptop with static IP address?
I need a remote access through web-interface to a local Oracle database from the internet.</p>
<p>Right now I have Zend Core installed which allowes me to connect to the database but I don't know how to make it from the internet.</p>
<p>Thank you in advance.</p>
http://stackoverflow.com/questions/1808673/how-to-include-resources-in-iphone-static-library1How to include resources in iphone static library ?CodeFlakes2009-11-27T13:07:16Z2009-11-27T19:43:18Z
<p>I'd like to include files, data and images in a static library API so the users won't need to include them manually in their project.
I see that there isn't obvious way to do it but is there some hack or workaround to achieve this goal ?
Thanks</p>
http://stackoverflow.com/questions/1672192/static-analysis-of-net-assembly0Static analysis of .net assemblySaar2009-11-04T07:28:00Z2009-11-27T15:00:03Z
<p>I have a C# project for which I need to find the all private methods which are not called from any other public method directly or indirectly.</p>
<p>In addition, for each private method which is called from a public method, I need to know which public method it is. Then I will detemine if that method is really called from a client of the class and if not I will be able to remove it.</p>
<p>In the past I used a code from Lutz Rorder which is the base of Reflector - it had an option to analyze IL code and gave object model on top of it. I cannot find this code now.</p>
<p>Any suggestion?
Maybe a point to that Lutz Rorder code?</p>
<p>Saar</p>
http://stackoverflow.com/questions/1805366/why-cant-static-classes-have-destructors1Why can't static classes have destructors?Jon Seigel2009-11-26T19:41:42Z2009-11-26T20:07:21Z
<p>Two parts to this:</p>
<ol>
<li><p>If a static class can have a static constructor, why can't it have a static destructor?</p></li>
<li><p>What is the best workaround? I have a static class that manages a pool of connections that are COM objects, and I need to make sure their connections get closed/released if something blows up elsewhere in the program.</p></li>
</ol>
http://stackoverflow.com/questions/1795397/static-used-only-for-limiting-scope1static - used only for limiting scope?chronodekar2009-11-25T08:13:37Z2009-11-25T09:29:00Z
<p>Is the <code>static</code> keyword in C used only for limiting the scope of a variable to a single file? </p>
<p>I need to know if I understood this right. Please assume the following 3 files,</p>
<p>file1.c</p>
<pre><code>int a;
</code></pre>
<p>file2.c</p>
<pre><code>int b;
</code></pre>
<p>file3.c</p>
<pre><code>static int c;
</code></pre>
<p>Now, if the 3 files are compiled together, then the variables "a" & "b" should have a global scope and can be accessed from any of the 3 files. But, variable "c" being static, can only be accessed from file3.c, right?</p>
<p>Does <code>static</code> have any other use in C ? (other than to limit the scope of a variable as shown above?)</p>
http://stackoverflow.com/questions/538870/java-static-methods-best-practices14Java - static methods best practicesavalys2009-02-11T21:24:32Z2009-11-25T06:29:42Z
<p>Let's say I have a class designed to be instantiated. I have several private "helper" methods inside the class that do not require access to any of the class members, and operate solely on their arguments, returning a result.</p>
<pre><code>public class Example {
private Something member;
public double compute() {
double total = 0;
total += computeOne(member);
total += computeMore(member);
return total;
}
private double computeOne(Something arg) { ... }
private double computeMore(Something arg) {... }
}
</code></pre>
<p>Is there any particular reason to specify <code>computeOne</code> and <code>computeMore</code> as static methods - or any particular reason not to?</p>
<p>It is certainly easiest to leave them as non-static, even though they could certainly be static without causing any problems.</p>
http://stackoverflow.com/questions/1789791/can-someone-give-me-an-example-how-to-use-fast-esps-boostbt-tool0Can someone give me an example how to use FAST ESp's boostbt tool?Aman2009-11-24T12:32:33Z2009-11-24T12:32:33Z
<p>Can someone give me an example how to use FAST ESp's boostbt tool ? What is the format of the XML that can be used for boostbt tool? Can it be used to affect static rank of the whole lot of documents based on the source of the document?</p>
http://stackoverflow.com/questions/1783204/force-library-linking-with-qt-and-google-test1Force library linking with Qt and google testchedi2009-11-23T13:44:34Z2009-11-24T08:00:42Z
<p>Hi,</p>
<p>I'm trying to write a test suit for my Qt(c++) application using google test, the main problem is that my application consists of one main program and various shared libs. Everything was working just fine, until I tried to do some code coverage using gcov/lcov (which don't operate on dynamic libs), so I modified all my .pro file to have a static lib compilation using :</p>
<pre><code>
CONFIG += staticlib create_prl
QMAKE_LFLAGS += -static
LIBS += ../../Libs/lib*.a
</code></pre>
The problem is that google test test application is something like this:
<pre><code>
int main(int argc, char **argv) {
::testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
}
</code></pre>
so it detects the linkage at runtime, which means that when I compile the test application here is no warning or whatever that indicate a problem, and when running the test application it execute 0 test because it doesn't found any.
my solution (quit annoying one) is to define in each class which will be used for test a phony public static member and do an operation for the main test application on it:
<pre>
<code>
class SETTINGS_TESTS_SHARED_EXPORT SettingsTests: public testing::Test {
public:
SettingsTests();
virtual ~SettingsTests();
static bool dummy;
protected:
virtual void SetUp();
virtual void TearDown();
private:
Settings* _setting0;
Settings* _setting1;
Settings* _setting2;
};
</code>
</pre>
<pre><code>
using namespace MBI::SETTINGS;
using namespace MBI::TESTS;
int main(int argc, char **argv) {
SettingsTests::dummy = true;
::testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
}
</code></pre>
<p>so I can force the linkage of that lib on my application.</p>
<p>I have also found the option -u to do something like that in gcc but doesn't seem to work. have anyone have a way to force static library linking if no symbol can be detected in compile time ?</p>
http://stackoverflow.com/questions/9321/how-do-you-create-a-static-class-in-c3How do you create a static class in C++?superjoe302008-08-12T23:35:00Z2009-11-23T21:04:27Z
<p>How do you create a static class in C++? I should be able to do something like:</p>
<pre><code>cout << "bit 5 is " << BitParser::getBitAt(buffer, 5) << endl;
</code></pre>
<p>Assuming I created the BitParser class. What would the BitParser class definition look like?</p>
http://stackoverflow.com/questions/1784975/thread-local-storage-used-anywhere-else0Thread local storage used anywhere else?yesraaj2009-11-23T18:14:19Z2009-11-23T18:53:45Z
<p>Is thread local storage used anywhere else other than making global and static variables local to a thread?Is it useful in any new code that we write?</p>
http://stackoverflow.com/questions/1338436/how-to-initial-static-member-in-c-using-function0How to initial static member in c++ using function?sxingfeng2009-08-27T01:37:06Z2009-11-23T15:46:08Z
<p>I am using c++;</p>
<p>in .h:
static CRITICAL_SECTION g_CS;</p>
<p>in .cpp:
CRITICAL_SECTION CQCommon::g_CS;</p>
<p>but I want to use</p>
<pre><code> QGUID temp;
EnterCriticalSection(&g_CS);
temp = g_GUID++;
LeaveCriticalSection(&g_CS);
return temp;
</code></pre>
<p>in one static function.
How can I invoke InitializeCriticalSection(PCRITICAL_SECTION pcs);</p>
<p>Can I using the following one:</p>
<pre><code>QGUID func(XXX)
{
static {
InitializeCriticalSection(&g_CS);
}
QGUID temp;
EnterCriticalSection(&g_CS);
temp = g_GUID++;
LeaveCriticalSection(&g_CS);
return temp;
}
</code></pre>
<p>And How can I invoke DeleteCriticalSection(&g_CS) after app leave?
Many Thanks for your answers!</p>
<p>Using MFC, it seems CCriticalSection is a solution.</p>
http://stackoverflow.com/questions/1781745/moq-roles-addusertorole-test1Moq Roles.AddUserToRole testLencoTB2009-11-23T08:16:57Z2009-11-23T11:40:38Z
<p>I am writing unit tests for a project in ASP.NET MVC 1.0 using Moq and MvcContrib TestHelper classes. I have run into a problem.</p>
<p>When I come to Roles.AddUserToRole in my AccountController, I get a System.NotSupportedException. The Roles class is static and Moq cannot mock a static class.</p>
<p>What can I do?</p>
http://stackoverflow.com/questions/1049689/why-doesnt-c-support-local-static-variables-like-c-does3Why doesn't C# support local static variables like C does?JoelFan2009-06-26T15:16:10Z2009-11-22T23:42:01Z
<p>Why doesn't C# have local static variables like C? I miss that!!</p>
http://stackoverflow.com/questions/1717976/are-there-other-languages-besides-d-with-static-if6Are there other languages besides D with static if?Grumdrig2009-11-11T20:50:48Z2009-11-21T22:23:11Z
<p>I think D's <code>static if</code> is an interesting language feature. That prompts my question: Are there are other examples of compiled languages in which the compiler has a strong notion of the code and there are languages facilities to access them?</p>
<p>For example, this code provides something similar to <code>repr</code> from Python:</p>
<pre><code>char[] repr(T)(T value) {
static if (is(typeof(value.__repr__))) { // class T provides a "repr()" method
return value.__repr__();
} else static if (is(T:string)) {
return `"` ~ value ~ `"`;
// ...other cases...
} else {
return toString(value);
}
}
</code></pre>
<p>I think this is cool is because it allows a different and more general approach to what overloading does, which is kind of an inside out way to make code more dynamic, compared to features like this. For example, the compiler knows how many fields my class has, but there's no way for my code to access that information at compile time in most languages.</p>
<p>CAVEAT: That last paragraph had opinions in it, but I just mean to provide some motivation and clarification for my question, not elicit controversy. I just want to find out if any other compiled languages have such features.</p>
http://stackoverflow.com/questions/1776369/c-inheriting-separate-static-members-for-derived-classes3C#: Inheriting separate static members for derived classes.Calmarius2009-11-21T18:54:28Z2009-11-21T20:41:33Z
<p>My problem in brief:</p>
<pre><code>class A
{
/* Other stuff in my class*/
protected static staticMember;
}
class B : A
{
/* Other stuff in my class*/
// Will have A.staticMember but I want B.staticMember (same type)
}
class C : A
{
/* Other stuff in my class*/
// Will have A.staticMember but I want C.staticMember (same type)
}
</code></pre>
<p>So I want all my derived class to have a shared data that is shared for that paricular class but have a common signature defined in the base class.</p>
<p>I'm creating a simple RTS game for fun in my free time. There are several kinds of units (spaceships, buildings, etc.) that have some basic attributes.
These units can be upgraded by the players (all units of the same type belonging to the same player are upgraded eg. Player A upgrades the tanks' armor means that all his tanks
will have better armor.)</p>
<p>Here is how I tried to achive this:</p>
<pre><code>abstract class Unit
{
/*several methods that is common for all units*/
/*We don't know the unit's attributes at this point*/
protected abstract double getMaxHitpoints();
protected abstract double getFusionArmor();
protected abstract double getNormalArmor();
// and more similar abstract methods to come.
double maxHitpoints;
double fusionArmor;
double normalArmor;
//...
// This method is called on construction and after upgrade completion.
public void cacheAttributes(Player forPlayer)
{
Upgrade upgradesForThisUnit; //<<< Upgrade is class that is used like a struct to hold the upgrades for this kind of unit.
upgrades.TryGetValue(forPlayer,out upgradesForThisUnit); ///< get upgrades if available (if not available it will give the default value [=no bonuses])
maxHitpoints=getMaxHitpoints()+upgradesForThisUnit.hitpointBonus;
fusionArmor=getFusionArmor()+upgradesForThisUnit.fusionArmorBonus;
normalArmor=getNormalArmor()+upgradesForThisUnit.normalArmorBonus;
//...
}
// This data structure is intended to hold the upgrades for every player for this kind of the unit
// but unfortunally derived classes have this instance too so if the player upgrades the tanks it will upgrade the interceptors, peasants, buildings too...
protected static Dictionary<Player,Upgrade> upgrades;
}
class Tank : Unit
{
protected override double getMaxHitpoints() {return 1000;}
protected override double getFusionArmor() {return 10;}
protected override double getNormalArmor() {return 50;}
//...
}
</code></pre>
<p>I thought about adding an additional key to my dictonary (using nested dictionary): Type structures as key and modify the code like this:</p>
<pre><code>protected static Dictionary<Player,Dictionary<Type,Upgrade>> upgrades;
public void cacheAttributes(Player forPlayer)
{
Dictionary<Type,Upgrade> upgradesForThePlayer;
upgrades.TryGetValue(forPlayer,out upgradesForThePlayer);
Upgrade upgradesForThisUnit; //<<< Upgrade is class that is used like a struct to hold the upgrades for this kind of unit.
upgradesForThePlayer.TryGetValue(GetType(),out upgradesForThisUnit); ///< get upgrades if available (if not available it will give the default value [=no bonuses])
maxHitpoints=getMaxHitpoints()+upgradesForThisUnit.hitpointBonus;
fusionArmor=getFusionArmor()+upgradesForThisUnit.fusionArmorBonus;
normalArmor=getNormalArmor()+upgradesForThisUnit.normalArmorBonus;
//...
}
</code></pre>
<p>But I'm not sure this works as expected.</p>
<p>The solution is probably simple but I have no clue how to solve this now.</p>
http://stackoverflow.com/questions/1513520/java-why-all-fields-in-an-interface-are-implicitly-static-and-final2Java - Why all fields in an interface are implicitly static and final?peakit2009-10-03T11:27:38Z2009-11-20T15:08:04Z
<p>I am just trying to understand why all fields defined in an Interface are implicitly <code>static</code> and <code>final</code>. The idea of keeping fields <code>static</code> makes sense to me as you can't have objects of an interface but why they are <code>final</code> (implicitly)?</p>
<p>Any one knows why Java designers went with making the fields in an interface <code>static</code> and <code>final</code>?</p>
http://stackoverflow.com/questions/1767601/java-singleton-pattern-should-all-variables-be-class-variables0java singleton pattern, should all variables be class variables?prmatta2009-11-20T00:31:40Z2009-11-20T00:57:14Z
<p>If a class implements a singleton pattern, should all the variables be declared static?</p>
<p>Is there any reason they shouldn't be declared static? Does it make a difference?</p>
http://stackoverflow.com/questions/1766715/when-not-to-use-the-static-keyword-in-java3When NOT to use the static keyword in Java?hal100012009-11-19T21:32:14Z2009-11-19T23:30:30Z
<p>When is it considered poor practice to use the static keyword in Java on method signatures? If a method performs a function based upon some arguments, and does not require access to fields that are not static, then wouldn't you always want these types of methods to be static?</p>
http://stackoverflow.com/questions/437620/java-synchronized-methods-lock-on-object-or-class4Java synchronized methods: lock on object or classjbu2009-01-13T00:48:39Z2009-11-19T22:34:14Z
<p>The Java Tutorials say: "it is not possible for two invocations of synchronized methods on the same object to interleave."</p>
<p>What does this mean for a static method? Since a static method has no associated object, will the synchronized keyword lock on the class, instead of the object?</p>