static

Are static members inherited? (C++)

When static members are inherited, are they static for the entire heirarchy, or just that class, ie: class SomeClass { public: SomeClass(){total++;} static int total; }; class SomeDerivedClass: public SomeClass { public: SomeDerivedClass(){total++;} }; int main() { SomeClass A; SomeClass B; SomeDerivedClass C; ...

Why does PHP 5.2 disallow abstract static class methods?

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: Strict Standards: Static function Program::getSelectSQL() should not be abstract in Program.class.inc The function in question belongs to an abstract parent class Program and is de...

How do I set up a static list of per-type/class metadata?

This is a follow up to this question... First, I have this: public class ListForType<T> { private Dictionary<Type, List<T>> listForType = new Dictionary<Type, List<T>>(); public void AddList(Type type, params T[] list) { AddListForType(type, list); AddListFromSuperiorTypes(); } public T[] ...

How do I create an iPhone framework and use it in other iPhone applications

I would like to create a framework for some reusable code that I would like to include in other iPhone apps. What is the best way to do it? Ideally, I would like it to work just like builtin frameworks and have the app use it without mucking around with build files. ...

Static Web Service over non-static

Currently I have a web service (WCF) that exposes methods that are set to static. From a strictly memory/GC perspective, what is different in how the CLR and GC handle static versus non-static objects? ...

When does garbage collection happen for a class with static data

I want to make some data easily available throughout my application. I have a few variables in a class with static data, which get written to and read from at several different points. This worked fine for a while, but now at one point where I expect to be able to retrieve an ArrayList all I get is "null". I am wondering if the static ...

Qt static linking and deployment

hi everyone, I am trying to deploy(release to public) a simple qt application I made recently, but got stuck at static linking qt libs. I followed the guide on qt docs to re-build qt and my app statically. But the release build still require qtgui / qtcore dll for no apparent reasons, I wonder if anyone has seen this kind of problems be...

Using WebPy as a static HTTP content server

How is it possible to tune up WebPy to use it to serve static content for several websites? I run two websites on one IP using web.subdomain_application for name-based virtual hosting. The implied solution for hosting static content is to create a static/ directory in the directory containing HTTP server script and put all static files ...

Is there a way to exclude package-level functions and members from Doxygen output?

I'm working with Doxygen at the workplace and am having a problem with the Java code. With the EXTRACT_ALL=NO, EXTRACT_PRIVATE=NO, EXTRACT_STATIC=NO, EXTRACT_LOCAL_CLASSES=NO, and EXTRACT_LOCAL_METHODS=NO, the output still includes static members that are not defined as public or private. EX. Let's say I have the following code: class ...

F# Private Static Methods

How do i define a private static method in a class in f#? when i try to attach a private modifier it complains. ...

Should all the fields in a GlobalSettings modelling class be static ( C# centric ) ?

The idea is that the ApplicationSettings class will get some default values from a configuration / resource file and later on some but not all from those settings will be applied to UserSettings ...

Want implement a utility class which methods represent steps in a validation process. Is there a pattern or best practise for that?

Hi, i want to implement a utility class which methods are internal steps of a validation process. Is there a pattern for this or should i use a totally different approach? Im open for suggestions. (I´m coding in abap but i dont think that is important) Edit: Its no frontend validation of text, but a check if certain conditions are mat...

Accessing static content of an ASP.Net MVC project with IIS7

I've create a web site on my local IIS 7 with my own ASP.Net MVC project on its root. Everything is working fine except for the static content. Going to http://localhost:8080/Content/Site.css gives me a 404. I can see the folder on IIS Manager. The content is served fine with the small development server you get when you run the appl...

Static initializers and thread synchronization (.NET)

Static initializers are supposed to be executed once before the first reference to the class. It means that every time a class is accessed, a check should be performed whether the static initializers for the class are executed. It seems that in multithreaded environment classes with non-trivial static initializers can be a source of cont...

Why doesn't C# support local static variables like C does?

Why doesn't C# have local static variables like C? I miss that!! ...

Is it possible to call a non-static function inside static function in C#?

Is it possible to call a non-static function that uses a public non-static class inside a static function in C#? public class MyProgram { private Thread thd = new Thread(myStaticFunction); public AnotherClass myAnotherClass = new AnotherClass(); public MyProgram() { thd.Start(); } public static void myS...

How do I make my public static logging method write to an inputfield?

I figured out how to create a static method that is available everywhere, for example: UtilLib.as: package { public final class UtilLib { public static function getTimeStamp():uint { var now:Date = new Date(); return now.getTime(); } } } I can access this...

How to change a 2d array from dynamic to static of a specific size?

I currently have the dynamic array: char *myData[500][10]; //myData is the name of an array of[500][10] pointers to type char. I would like to create a static 2d array, 500 rows X 10 columns, each element storing memory for 40 characters. Would below be the correct way of declaring that? char myData[500][10][40]; ...

Generating a static library and an executable with a single installation (autoconf)

I know how to build a project or how to create a library using autoconf. What I want to achive is to generate a static library and use this library to build a project in a single configure/make/make install run. I want some source files to be put into library and the rest to be compiled using this library. How do I modify makefile.am ...

Objective C Static Class Level variables

I have a class Film, each of which stores a unique ID. In C#, Java etc I can define a static int currentID and each time i set the ID i can increase the currentID and the change occurs at the class level not object level. Can this be done in Objective C? I've found it very hard to find an answer for this. ...