0
votes
2answers
37 views
“Member modifier ‘static’ must precede the member type and name” Error C#
I am building a game of BlackJack and the main class for it is having a problem. This is my code:
using System;
using System.Collections.Generic;
using System.Linq;
using System.T …
1
vote
3answers
61 views
How is a dynamically-typed language implemented on top of a statically-typed language?
I've only recently come to really grasp the difference between static and dynamic typing, by starting off with C++, and moving into Python and JavaScript. What I don't understand i …
0
votes
1answer
28 views
static event handlers, threading and the like
Hi
can anyone explain to me what is happening when a instance of a class declaring a static eventhandler will hold reference to other classes that have registered intent with the …
0
votes
2answers
35 views
AS3 - Accessing attributes of a static variable of an object from another object
I have 2 classes, Display holds the currently selected Component:
public class Display
{
public static var selectedComponent:Component;
}
Component has an ID string and the sel …
2
votes
4answers
82 views
public static final variable in an imported java class
hi all,
I happen to come across a Java code at my work place. Here's the scenario: There are 2 classes - ClassA and ClassB.
ClassA has nothing except 4 public static final string …
3
votes
4answers
62 views
How to statically link using link.exe
I've been trying to statically link against a C++ library called Poco on Windows using the Visual Studio 2008 command line tools.
I build my program with:
cl /I..\poco\lib /c mya …
0
votes
5answers
91 views
c# : console application - static methods
why in C#, console application, in "program" class , which is default, all methods have to be static along with
static void Main(string[] args)
9
votes
7answers
236 views
Utility classes.. Good or Bad?
I have been reading that creating dependencies by using static classes/singletons in code, is bad form, and creates problems ie. tight coupling, and unit testing.
I have a situati …
0
votes
3answers
85 views
what is the use of static functions in C [closed]
Possible Duplicates:
What does “static” mean in a C program?
Why declare a variable or function static in C?
could nybody please tell me wht is the use of st …
0
votes
3answers
40 views
how to Intialize the object as a static only for one session
I am working with ASP.net 3.5 MVC application.
I have one assembly which has ClassA.
I have another assembly which creates the object of ClassA
Now the question is ,
how to Intia …
2
votes
3answers
165 views
Why declare a variable or function static in C?
I understand what static does, but not why we use it. Is it just for keeping the abstraction layer?
0
votes
4answers
55 views
Static analysis of .net assembly
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.
In addition, for each private method …
58
votes
16answers
1k views
Are fluid websites worth making anymore?
Hey guys,
I'm making a website now and I am trying to decide if I should make it fluid or not. Fixed width websites are much easier to make and also much easier to make them appea …
1
vote
1answer
21 views
Create jnilib from x86_64 .a files on Mac OS X 10.6
I want to use a bunch of non-universal (thin?), x86_64, C libraries from a Java application.
The problem is that I only have static versions of them (.a files) and the jvm needs th …
0
votes
5answers
211 views
C++ - calling methods from outside the class
I have couple questions regarding some C++ rules.
Why am I able to call a function/method from outside the class in the namespace when I include the return type? (look at the nam …
