Tagged Questions
The static-classes tag has no wiki summary.
13
votes
7answers
374 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?
10
votes
11answers
2k views
C# Static class vs struct for predefined strings
A co-worker just created the following construction in C# (the example code is simplified). His goal was to shorten the notation for all predefined strings in the rest of the code.
public struct ...
10
votes
3answers
2k views
Extension methods on a static class?
I know i can do the below to extend a class. I have a static class i would like to extend. How might i do it? I would like to write ClassName.MyFunc()
static public class SomeName
{
static public ...
7
votes
4answers
245 views
Should I never use static methods and classes and singletons when following the Test Driven Development paradigm
I've been reading that static methods, static classes, and singletons are evil when you try to implement unit testing in your project. When following the TDD paradigm, should I just forget that they ...
7
votes
4answers
126 views
Why can't I create extension methods for static classes?
When I try to create an extension method for the File class, I get an error telling me that I cannot do this because the class is static. However, I don't see why this stops the creation of an ...
7
votes
6answers
748 views
Why are static classes used?
I have doubts on static class and static methods. From MSDN I understood that "Static classes and class members are used to create data and functions that can be accessed without creating an instance ...
6
votes
5answers
2k views
Why does Android prefer static classes
I see a lot of java code where android prefers to have developers use static inner classes. Particularly for patterns like the ViewHolder Pattern in custom ListAdapters.
I'm not sure what the ...
5
votes
3answers
526 views
Exception in static constructor
I've dug around SO for an answer to this, and the best one I can find so far is here, however that is geared toward instances with static constructors; I'm only using the class statically.
My code:
...
5
votes
3answers
365 views
How to serialize non-static child class of static class
I want to serialize a pretty ordinary class, but the catch is it's nested in a static class like this:
public static class StaticClass
{
[Serializable]
public class SomeType
{
...
...
5
votes
2answers
76 views
I once read that static classes are very difficult and even impossible to debug. Is this true and why?
I once read that static classes are very difficult and even impossible to debug. Is this true and why?
If an example would help, here is a PHP class I use to access a database (I don't think this is ...
5
votes
2answers
411 views
Which static class initialize first?
Which static class initialize first if we have one more static classes in our project?
For example : Below code gives null exception.
class Program
{
static void Main(string[] args)
...
4
votes
1answer
267 views
Adapter pattern with static classes
I am looking for a good way to implement the Adaptor pattern with static classes in PHP 5.x.
One of the examples where I would like to use this, is as a counterpart to Python's os.path.join().
I ...
3
votes
3answers
168 views
Having separate copy of base class static member in each derived class
I have following class structure:
public abstract class PresenterBase
{
public static Dictionary<string, MethodInfo> methodsList;
public void Bind()
public void Initialize();
}
...
3
votes
6answers
193 views
If a class is blueprint for objects, what about static class?
Reading C# Step by Step, the author mentiones the class is just blueprint for objects and itself is useless. Well, how then comes static classes can work alone?
I do understand the concept that ...
3
votes
6answers
350 views
When to use static classes and methods?
I have a general question...when should i be using static classes or static methods?..
I know the idea that static methods can be called without instantiating...and static classes should only be used ...
3
votes
4answers
702 views
Application service layer as static classes
In my ASP.NET MVC application, I have a project that contains all the business logic/service layer. This project interacts with my Database (Entity framework) which is located in a separate project.
...
3
votes
5answers
746 views
Extending the Enumerable class in c#?
I have situation to extend the Enumerable class in c# to add the new Range method that accepts long parameters. I cannot define the method like this
public static IEnumerable<long> Range(this ...
2
votes
1answer
27 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
110 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 ...
2
votes
3answers
125 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 ...
2
votes
2answers
116 views
The process which Lucene tokenizes text
This can be considered as a general Java question but for better understanding I'm using Lucene as example.
You can use different Tokenizers in Lucene to tokenize text. There's the main abstract ...
2
votes
1answer
131 views
Will this static class break in a multi user scenario?
Say I make a static class like following with an extension method:
public static class MyStaticExtensionClass
{
private static readonly Dictionary<int, SomeClass> AlgoMgmtDict
= new ...
2
votes
2answers
163 views
Why are my static objects not being instantiated when first access to the static class is a static method on the base class?
I have the following class:
public class DocketType : Enumeration<DocketType, int, string>
{
public static DocketType ChangeOver = new DocketType(1, "Changeover");
public static ...
2
votes
2answers
169 views
Where does static classes/members allocate?
it's being a long time since i'm trying to find out the truth about static classes. my point is: value types are allocated in stack, reference types in heap, when using the new operator. but a nature ...
2
votes
3answers
474 views
C# - Which is more efficient and thread safe? static or instant classes?
Consider the following two scenarios:
//Data Contract
public class MyValue
{
}
Scenario 1: Using a static helper class.
public class Broker
{
private string[] _userRoles;
public ...
2
votes
2answers
1k views
ASP.NET MVC, ActionFilters, static classes and passing data around
I'd like to hear your opinions and maybe better suggestions for the following scenario:
I have define a custom ActionFilter that does some job and comes out with some value. I would like to use that ...
1
vote
3answers
69 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 ...
1
vote
2answers
202 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
4answers
736 views
Abstract classes vs Static classes in C# [closed]
Possible Duplicate:
What's the difference between an abstract class and a static one?
Hello
I Would like to know what are all the differences between abstract classes and static classes ...
1
vote
3answers
288 views
What's the difference between enums & using static classes with constants?
What are the performance implications between these two items? I've seen the static class in the wild recently and I'm not sure what to make of it.
public enum SomeEnum
{
One = 1,
Two,
Three
...
1
vote
3answers
442 views
Type initializer threw an exception
This class is throwing an exception. It doesn't show me the exact line number, but it sounds like it's occurring in the static constructor:
static class _selectors
{
public static string[] order ...
1
vote
1answer
134 views
How to force static class to implement specific methods?
I need to create a set of static classes and all of them need to implement the same methods. I want to find a way to force them so.
I understand that static classes cannot derive anything other than ...
1
vote
2answers
689 views
Mocking a Static Class
I have a static class that wraps some native methods from winspool:
public static class WinSpool
{
[DllImport("winspool.drv")]
public static extern int OpenPrinter(string pPrinterName, out ...
0
votes
1answer
60 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
72 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 ...
0
votes
1answer
21 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
131 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 ...
0
votes
2answers
83 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
63 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 ...
0
votes
6answers
67 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;
...
0
votes
1answer
60 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
82 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:
...
0
votes
3answers
164 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 ...
0
votes
2answers
87 views
What happens in a static parametrized class regarding its instance?
Suppose I have this class:
public class DispatcherService<T>
{
private static Action<T> Dispatcher;
public static void SetDispatcher(Action<T> action)
{
...
0
votes
0answers
347 views
Class Library - Static Library - Linker Issue LNK4221
I am using VS2008, Class Library template, with /clr.
I wanted to have a managed Class Library.
Everything works fine when I have the library compiled as a dll.
Header file: multiclasses.h
#pragma ...
0
votes
1answer
325 views
std::map fails to insert objects
A program I'm making requires access pools of various types of resources, but only accessible to a few classes. The resource pool is also its own class. As such, I decided to use a static class for ...
0
votes
2answers
131 views
Referencing a static class from an array?
I have a list of numbers, and each number that is the same should act exactly the same. So I have static classes for each number so that if I change the class, so do all of the numbers it references ...
0
votes
2answers
133 views
Acceptable use of static classes?
Have a class that was not originally meant to be static...
public class SapApprovalHandler {
private static SapGs3DataSet sapGs3DataSet;
static SapApprovalHandler() {
try {
...
0
votes
3answers
293 views
TextBox not updating in C#
Specifically looking at the arrive method in the Customer class. I am using a for loop to create instances of the customer class, and when I try to write out their arrival times to a textBox (Just for ...
0
votes
1answer
90 views
Static classes and the Business Objects COM Library
The following code below is from a winforms application that on a button event opens up an instance of business objects 6.5, refreshes the report and then dumps the data in the report into a csv file, ...