Static is a term used in some programming languages to define a function or data storage area (field) that is not bound to any specific object instance.
0
votes
2answers
74 views
Java:Why can't we override a method to make it static? [duplicate]
Why can't we override a non-static method to make it static. I got this error when trying to do it :
This static method cannot hide the instance method from aSuperClass.
Many thanks!
0
votes
0answers
7 views
Addresses of dynamic versus static arrays?
I noticed that the address of a static array when called with or without & remains the same. However for a dynamic array, it will change as illustrated in the following code:
int *a = new ...
2
votes
4answers
75 views
Java class keyword
I found a few days ago a code in Java that uses the class keyword in the context, for example:
MyConcreteClass.class.AMethod();
I've tried to do it in a JFrame, for example:
...
-3
votes
5answers
77 views
programming error in java due to static variable
Following code is going in else statement. I am not able to find out where i made mistake.
*A want to execute in below comments.
*B is executing in below comments.
package com.java;
import ...
1
vote
2answers
67 views
Undefined reference to static variable c++
Hi i am getting undefined reference error in following.
class Helloworld{
public:
static int x;
void foo();
};
void Helloworld::foo(){
Helloworld::x = 10;
};
I don't want to the ...
-5
votes
2answers
61 views
size() command not working when containing method is run within a static method [closed]
I don't know what is going on, here is my code:
import java.io.*;
File file;
static void main(String[] Args){
try{
new MeshViewer().init(Args[0]);
}catch (ArrayIndexOutOfBoundsException e){
...
1
vote
1answer
19 views
Migrate existing content (HTML) into TYPO website
I have a number of Webpages which I would like to import (automatically, not manually) into an existing TYPO3 website. A template and styles already exist. All webpages which are to be imported have ...
2
votes
4answers
75 views
Why does a large static array give a seg-fault but dynamic doesn't? (C++)
The following code gives me a segmentation fault:
bool primeNums[100000000]; // index corresponds to number, t = prime, f = not prime
for (int i = 0; i < 100000000; ++i)
{
primeNums[i] = ...
0
votes
1answer
35 views
AS3: How to get arround the restriction of using properties (width, x, y, etc.) in static setter function?
Variant 1:
public static function set setWidth(w:int):void
{
width += (w); //not working
}
.
public function Caller()
{
ProgressLine.setWidth = -20;
...
8
votes
1answer
118 views
const volatile, register volatile, static volatile in C++
I am wondering about the different uses of the volatile keyword in combination with register, const and static keywords. I am not sure what are the effects, so I think:
register volatile int T=10;
...
2
votes
1answer
40 views
Is it possible to use clojure's gen-class macro to generate a class with static fields?
Can the following class be generated using Clojure's gen-class macro?
public class Test {
public static final String TEST_NAME = "This test's name.";
}
If not, why not?
-1
votes
0answers
47 views
Static IP in Windows Server 2008 R2? [closed]
I am at my wits end here.
I am trying to setup a Windows Server 2008 R2 with a static IP, but no matter how many guides I follow it just doesn't work (no connection). (Auto obtain IP works but static ...
0
votes
2answers
60 views
Issue with static variables in Java
I need an explanation for the output of the below code:
class Stats
{
static int a = 10;
int b = 20;
void printMe()
{
System.out.println(a+b);
}
}
public class Static
{
...
0
votes
1answer
105 views
Making a lottery application: fill array with random numbers
I am making a lottery application in Java. My problem is that I think everything is in place and it (the IDE) is telling me that "int lotteryNumbersCount = ...
0
votes
0answers
81 views
Using class static const members to create safe enum
I've been using enums recently, and I came to the realization that enums, even enum classes, are inherently unsafe.
In fact, it is easy to do something like this:
enum class EnumType {
A,
B,
...
1
vote
1answer
42 views
how do i assign a static method to a System.Delegate object?
My problem is that i have a class whose constructor takes a System.Delegate object as a parameter and i have no idea how to assign a method to a System.Delegate object.
This is the code i have right ...
1
vote
1answer
57 views
How to initialize R function during first run or whenever input changes
I'm new to R and have some trouble of understanding so called "envirionments" and way to use them properly. What I miss a lot in R language are static variables (like in Java).
I'm writing a program ...
9
votes
9answers
456 views
Member-Function-Scoped Variable
Consider the following code:
#include <iostream>
struct X {
int foo() {
// Can I get this to be an instance-specific static variable, please?
static int i = 0;
...
0
votes
1answer
18 views
Accessing #defined variables from static methods in c++
I have header file A with code,
#define varA 1
And a header file B in which I have included the header file. I have the following static method in header file B,
static void MakeBFromA(){
int ...
2
votes
1answer
85 views
Where do you put the core of you Java application?
I am new to Java, I am coming from PHP and ActionScript.
In AS, it is a common thing to do to put the main controller part of the software into the main class.
In Java, it is extremely difficult for ...
0
votes
1answer
49 views
Accessing MFC dialog elements from outside member class (SOLVED)
I am trying to call a non static function of my MFC dialog class (which gets an edit box's value and returns it as a string) from outside the dialog class.
Namely, I have Dlg.cpp and calc.cpp and I ...
0
votes
1answer
32 views
Managing static pages from admin interface
I have few static pages(Contacts, About us, etc) in my rails app. Admin interface realized by separating routes(namespace :admin do ...). How I can manage static(!) content in static pages only from ...
0
votes
3answers
53 views
Starting activity from static method
I've a problem with starting Activity's. I'm trying to start a new activity whithin a static method.
This is my code for that:
static Dialog dialog=null;
public static void NextLevel(Context ...
0
votes
1answer
91 views
C# memory allocation: Difference between static class and a static instance
How does CLR allocates memory in these 2 cases:
Are they both allocated in static memory area?
static class A
{
//Some methods
}
and
class A
{
//Some methods
}
class B
{
static ...
0
votes
2answers
51 views
java cannot find symbol error: beginner
When compiled this static method comes up with the error that the int array variable, coord, cannot be found. I declared it within the method and it is of the type int[] and I can't figure out why it ...
1
vote
4answers
44 views
Java - Inherit static field and change it's value
I'm working on program/game in Java, where I have static utility class with params.
class ParamsGeneral {
public static final int H_FACTOR = 100;
public static int MAX_SCORE = 1000;
...
}
...
-3
votes
2answers
58 views
Java static fields not working with inheritance
Alright, this is probably something simple, but I just can't get it.
package foo.foo.foo;
public class Vars {
public static boolean foo = false;
}
Alright, so that's my Vars class.
I then ...
1
vote
2answers
30 views
Instantiating static nested classes without qualifying with enclosing class
class OuterClass {
static class StaticNestedClass {}
}
Above StaticNestedClass is instantiated by following syntax.
OuterClass.StaticNestedClass nestedObject =
new ...
0
votes
1answer
33 views
equivalent to the Java “static” keyword in Ceylon
I wondered if the Ceylon programming language features an equivalent to the "static" keyword in Java, or if there's some common idiom that's used in its place.
-5
votes
1answer
73 views
How do I create a static class that can be used in any project
I'm trying to create a static class (IntNode, IntList) that I would be able to access through any project by using the class name.
I've saved the file name as the class name (IntNode.cs), and I added ...
0
votes
1answer
27 views
include php file using a function
Inside index.php I need to include files using a php method from inside a class.
I'm calling the method, several times, on index.php and that method is doing include_once or require_once. The ...
0
votes
1answer
30 views
htaccess - Fetch static content from different path if page is HTTPS
As per the guidelines to speed up site, I have off-loaded all my static content (JS|CSS|IMAGES) to a subdomain static.example.com.
The site is working fine but the problem arises when I load the ...
1
vote
3answers
60 views
static arrays are not the same [java]
I'm trying to create a Java program that generates an amount of seats taken in an airplane. So far, I have been able to do this, but my problem is every time I run the client the numbers generated are ...
3
votes
2answers
65 views
Singleton pattern: different behavior of auto_ptr and unique_ptr
While implementing a factory class I encountered a behavior of std::auto_ptr that I am not able to understand. I reduced the problem down to the following small program, so ... let's start.
Consider ...
0
votes
1answer
62 views
Changing non-static values from a static method
So I am making an application which has a handler in the main class/activity.
I got the warning I should declare it static to prevent memory leaks.
So, I read some articles which explain the issue and ...
3
votes
6answers
126 views
JAVA - Static variable resets upon program restart
I have a problem with a static counter variable. In a super class ("Card") I have a variable that counts the amount of cards that gets registered (It's a ticket system). It is written like this:
...
0
votes
0answers
25 views
Would this be a good way to work with a configuration file in php? [closed]
I'm working on a small Wordpress Theme Framework to speed up my workflow in the future in which I would like to have a configuration file to handle some basic things like which styles and scripts to ...
0
votes
1answer
57 views
is it possible: Using static library in iOS without including any header file?
I made one really basic static library prints only one string on the screen. I made it for ios device and I added header files in copy headers --> Project. The main .h file is SampleSubproject.h . ...
0
votes
1answer
40 views
How can i capture screenshot and assign to a static control? Winapi
I am trying to capture a screen and assign it to some sort of control so I can click the picture and retrieve the coordinates at which the picture was clicked.
How would I go about doing this? Im ...
3
votes
4answers
43 views
Generating a random number outside of the oncreate method
I'm trying to set up my activity so that I can generate a set of random numbers from methods outside of my onCreate method. Here's how my activity is set up...
public void onCreate(Bundle ...
0
votes
3answers
63 views
How does java.util.Collections.reverse() work?
See the documentation of java.util.Collections.reverse().
I don't understand how Java methods can only pass by value, but yet the following is allowed:
public static void reverse(List<?> list)
...
-2
votes
2answers
65 views
C global variable value is not kept outside of function
I'm running into a slightly embarrassing problem: I have a program with two global uint32_t variables, and a function in which I assign values to them. However, when I try to print/access these values ...
0
votes
1answer
35 views
How to syncronize static variables in a web farm in asp.net
in asp.net we can store application scope variables (static, application)
But how can we sync the static variables of a node with the static variables of another node, without the use of distributed ...
0
votes
2answers
27 views
Setting a static member of a variable class in php
I'm trying to add a static member to each of my classes that contains the default database connection that they should use when instantiated. Here's how I'm trying to do it:
<?php //other classes ...
-6
votes
3answers
42 views
Java never declares access level of variables in methods whether static or not [closed]
Today I suddenly realized that Java never specifies access level for local variables when I try to declare a variable for main method. I also tried to give it a access level modifier, but it doesn't ...
2
votes
1answer
70 views
Need a really static field in a generic class, or otherwise how to protect its visibility?
I want to have a class like:
public class Forest<S, T>
{
static IList<Animal> coolGuys = new List<Animal>();
}
But I want coolGuys to be really static, which means it has to ...
0
votes
0answers
37 views
Parameter passing methods
I need to make some things clear before my exam. Can you help me to answer the following question? If Im mistaken I wan to fix it and learn the true answer.
Thank you!!!
int x = 1;
int foo (int a) ...
1
vote
1answer
27 views
PHP - Dynamic Class Name Inside Class Properties
I was wondering if it's possible to dynamically access a static class from within a class property. I'm trying to access the properties in a nchild class, but I'm having to do something like this:
...
-4
votes
0answers
50 views
Visual c++ Easiest way to get the offsets of functions
I want to get the offsets of a function of a compiled program in visual studio.
I know I could use something like
&function - imagebase
But I want to know whether there is an easier way to do ...
1
vote
4answers
97 views
Main method and classes, where do declare? [closed]
New to programming, new to java. I seem to understand the basic pieces like classes and their components, methods, etc, but I can't figure out how to put them together. For example, I'm following ...







