In object oriented programming a static class is a class whose members must be accessed without an instance of the class. Its members must be created as static.
1
vote
1answer
21 views
Bind to static generic instance of a class
I use this code in my views' (which are UserControl) constructors:
this.DataContext = The<Chart1ViewModel>.Instance;
Where the The<> is a generic static per-type singleton storage which ...
1
vote
4answers
85 views
Share common functionality between two static classes
I need to share some common functionality between two static classes:
public static class Class
{
public static void ClassMethod()
{
SharedMethod<object>();
}
//ideally ...
1
vote
3answers
73 views
How should common references be passed around in an assembly?
I am trying to get rid off static classes, static helper methods and singleton classes in my code base. Currently, they are pretty much spread over the whole code, especially so for the utility ...
1
vote
1answer
118 views
Why can't I access public property field in static class
I'm trying to figure out why this is not working...
public static class ApplicationType
{
private static ApplicationEnum application = ApplicationEnum.App1;
public static ApplicationEnum ...
1
vote
2answers
217 views
Refactoring a static class to use with dependency injection
We need to use an unmanaged library in our code that has static methods. I'd like to introduce the library operation as a dependency in my code. And apart from having static methods, the library has ...
0
votes
4answers
54 views
Scope of static class constructor and static class fields
I have 2 Console Applications (Console1 and Console2) in one solution. Both applications reference a class library (CL). CL contains a static class (SC) which contains fields that are set per ...
1
vote
1answer
73 views
Serialise string properties of static, nested classes to JSON
Given a set of static, nested classes such as this:
public static class LocalSiteMap
{
public static class Navigation
{
public static readonly string Home = "homePage";
...
1
vote
0answers
60 views
Binding a Listbox's SelectedItem to a property in an Instance of a static class
I have a simple listbox in a template file as follows:
<local:ProcessVisualization x:Key="ProcessVisualization"/>
<ListBox Grid.Column="1"
Grid.Row="1"
ItemsSource="{Binding ...
1
vote
4answers
148 views
Initializing public static final variables in constructor
I'm trying to make a Version class for my app that will read version numbers from the manifest at load time and then just reference for example Version.MAJOR and such wherever I need it elsewhere. ...
0
votes
0answers
29 views
Using a static class inside CakePHP application [duplicate]
Possible Duplicate:
Instantiating a vendor class in class constructor
I have a 3rd party vendor class called fancyVendor and I load it inside my controller with this:
App::import('Vendor', ...
3
votes
1answer
399 views
AS3: Static class versus Singleton
I know SO pals are not fans of "versus" questions but... even rephrasing the tittle a bit, the versus part is still there, so, why hide it.
Basically, I'd like to know when and why should I use a ...
0
votes
3answers
104 views
How can I run a static initializer method in C# before the Main() method?
Given a static class with an initializer method:
public static class Foo
{
// Class members...
internal static init()
{
// Do some initialization...
}
}
How can I ensure ...
7
votes
3answers
197 views
Concept Behind Static classes in Java
Consider the following code
class A {
static class B{
int a = 0;
}
public static void main(String argc[]) {
B var1 = new B();
B var2 = new B();
var1.a = 5;
...
9
votes
3answers
258 views
Using an inner class name and an object name same in Java
In the following code snippet, presumably it appears that it should issue some compilation error but it doesn't:
class Outer
{
public static class Inner
{
static String obj = "Inner";
...
3
votes
4answers
122 views
How to make pluggable static classes
I know how to make pluggable things in c#. Define an Interface, Activator.CreateInstance(<class>), etc. Or I can have a code path that explicitly creates an instance of the plugged class. Many ...
5
votes
2answers
653 views
ASP.NET Static classes and asp.net sessions
Would someone be kind enough to explain or point to article that explains how the scope of static classes and methods interact with the scope of a ASP.NET user session.
Here is the more specific ...
2
votes
3answers
413 views
Access static method from non static class possible in java and not in c#
Access static method from non static class with object.
It is not possible in C#. Where it is done by JAVA.
How it works?
example of java
/**
* Access static member of the class through object.
*/
...
0
votes
3answers
255 views
access static class member using the outer class
I have code like this i need to access the mysample variable of static class InnerClass in the getInnerS() method which is inside the the NestedClass. I tried accessing it by creating a new object for ...
-2
votes
2answers
211 views
access a Form1 public function from static class inside Form1
When writing this post i was checking all questions asked with related subject
and couldent find a simple answer to this Newbs C# issue
i would like ... if i may , to have as much as it can be a ...
1
vote
1answer
185 views
Eclipse has some problems with auto import static classes
I have some problems with eclipse.
if I use something like anyMap() in my source code, and press then CTRL + SHIFT + O no update in the import list will be done.
If I write something like: import ...
0
votes
1answer
114 views
Database model and extension method
In my ASP.NET web site I created new Entity Data Model and connected it with my MsSql database. Now I can use Model.Student class but that class don't have methods. I tried to add extension methods ...
0
votes
1answer
91 views
Calling a non-static method from within static Map Class in Hadoop
Using DistributedCache in Hadoop by Yavcular
In the above link, it is described how to use DistributedCache in Hadoop in an easy to understand way. But the problem is, when I trt to compile the code, ...
80
votes
3answers
26k views
This Handler class should be static or leaks might occur: IncomingHandler
I'm developing an Android 2.3.3 application with a service. I have this inside that service to communicate with Main activity:
public class UDPListenerService extends Service
{
private static ...
-1
votes
1answer
224 views
Static Property with Windows Service
in my solution Explorer i have tow Project one for windows service BridgeWS and the other Project Vytru.Platform.Bridge.Configuration have a static class SharedData.cs
My Problem : i want use this ...
0
votes
1answer
786 views
Static class Object reference not set to an instance of an object
I have the next static class:
public static class GlobalVar
{
public static string DatabaseName = "ProjectDatabase.mdf";
public static AdminClass Admin;
public static string TruePath = ...
0
votes
1answer
326 views
PHP avoid static classes to avoid dependencies, but I need to use global everywhere
Many times I heard to avoid static classes because they will insert dependencies that will render your code unusable in other projects, and will not allow to unit test it.
Let's say we have a typical ...
1
vote
3answers
947 views
The name 'temp' does not exist in the current context (C# desktop application)
I am making a C# desktop application with following code:
static class ClassA
{
public static string Process()
{
string temp = Functions.Test();
return temp;
}
}
...
0
votes
4answers
631 views
Returning 'this' in a static method
I would like to make a static class with a fluent interface but I am getting the error:
'this' is not valid in a static property, method ...
Here is my code:
public static MyClass
{
private ...
5
votes
4answers
278 views
Low-level difference: non-static class with static method vs. static class with static method
I was wondering what are the general benefits (or drawbacks) of using a non-static class with a static method versus a static class with the same static method, other than the fact that I cannot use ...
3
votes
5answers
124 views
Is there a built in type in C# that contains a bool and a string for static method return?
I'm looking for a type to return from a function or method, to convey first, whether it was successful or not, and then attache a message (as a string) to it to pass further information about why it ...
2
votes
2answers
292 views
Use static or singleton classes instead of System.Web.HttpRuntime.Cache?
I am of a firm belief that throwing hardware to solve software problems isn't the best policy. So when noticed several memory issues with one of our servers (currently running with 2 gigs), I tracked ...
0
votes
2answers
456 views
Using two static classes having same name in C#
I have a DLL which I have included in my C# project. Let's call it "one.dll"
This DLL contain a static class named "staticclass"
I have another DLL which I have also included in same project. Let's ...
2
votes
1answer
451 views
Static unmanaged dll C# wrapper and multithreading, multidomains
Good morning.
This is my scenario: I've got a 3rd party unmanaged foo.dll that interacts with an automatic fast payback device, call it FooDevice. I wrote a wrapper around methods of foo.dll, call it ...
0
votes
1answer
151 views
Kohana helper attribute
I have a question that keeps bothering me. Currently, I have started using Kohana 3.2 Framework. I've written a helper to handle some functionality - I have a number of methods, which are (as it ...
0
votes
3answers
191 views
How can I initialize final static variable in a static class?? (not as noob as it sounds)
So I'm using processing to draw a map from a data file. I want to stock some information of the first line inside a class. In processing this class is an inner class of PApplet, so it has to be a ...
1
vote
3answers
286 views
static class to Dictionary<string, string> in c#
I have a static class which only contains string properties. I want to convert that class into a name-value pair dictionary with key=PropName, value=PropValue.
Below is the code I have written:
void ...
0
votes
1answer
31 views
Should data that is the same across all class instantiations be held in a separate, static class?
If I have a class that will be instantiated that needs to reference data and/or functions that will be the same for each class. How should this be handled to follow proper programming practices
...
0
votes
6answers
657 views
Static Classes In Java
Is there anything like Static Class in java?
What is the meaning of such a class. Do all the methods of the static class need to be static too?
Is it required the other way round, that if a class ...
1
vote
2answers
851 views
Translate DllImport from static member of static class in C# console app to member of C++ CLR console app
I have the following and I can't shift the error surrounding the DllImport
#include "stdafx.h"
#include <msclr/auto_gcroot.h>
using namespace System;
using namespace System::Diagnostics;
using ...
1
vote
2answers
470 views
Dependency Injection with Static classes and properties
I have designed a multi-layer solution and created a bunch of Manager classes to implement Business Logic. All the managers are derived from BaseManager class. To be more clear, here's UserManager ...
0
votes
1answer
108 views
UnitTesting static Class (Theoretical Question)
I know when is ok to use a Static Class, but my simple question is:
If there's a big problem when we're Unit-Testing our code that has some Static Class?
Is better just using a regular instances ...
-1
votes
4answers
131 views
What is the difference between putting a static method in a static class and putting an instance method in a static class?
What is the difference between these two classes?
public static class MyClass
{
public static string SayHello()
{
return "Hello";
}
}
public static class MyClass
{
public ...
2
votes
1answer
30 views
Help with choosing structure of code to make NewsHandler class
Task is to add News on our site.
I'd like to make a php class for this task. This class should be able to do such things:
Add news
Edit news
Remove news
Display exact news
Get list of news
News ...
2
votes
1answer
233 views
Are static classes bad practice in PHP?
I would like to know what other people think about them.
(With "static classes" I mean a class whose all functions and variables are static).
I've found them very practical. I have this custom class ...
0
votes
6answers
135 views
Returning a static Class in PHP
I am working on a backend project. I need to return a static object withing another static object:
Class this_is_a_very_long_class_name
{
public static function call()
{
return self;
...
2
votes
3answers
275 views
Is it a good practice to use static classes to making the UI elements accessible from all the classes in .NET?
Please let me know which of the following is a good programming practise:
1. Using a static class and then using a reference to it from the class MainWindow constructor as shown:
public partial ...
15
votes
8answers
706 views
C#.NET - Why do members of a static class need to be declared as static? Why isn't it just implicit?
Obviously there can't be an instance member on a static class, since that class could never be instantiated. Why do we need to declare members as static?
0
votes
1answer
666 views
how are static class instantiated
I want to know how are static class Instantiated.
I mean according to OOPS concepts no class can be used without instantiating it. But still we can use static classes without instantiating it, so when ...
0
votes
2answers
119 views
Javascript Closures and *static* classes problem
I have a static class which contains an array of callback functions, I then have a few other classes that are used to interact with this static class...
Here is a simple example of the static class:
...
-1
votes
3answers
533 views
c# vb: do we really need System.Lazy?
Do we really need System.Lazy? Let's say my class library have 100 static classes and each static class uses an average of 100 static System.Lazys = 10000 System.Lazys that have to be initiated when a ...
