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.

learn more… | top users | synonyms

0
votes
4answers
25 views

How to initiate static pointer with malloc in C?

I'm trying to initiate a static variable with malloc in C, but I'm getting the "initializer not constant error". I know that I can't initiate a static with non constants in C, but can anyone think of ...
0
votes
0answers
6 views

hidapi : static linking (cross platform win32, linux, macos)

I see many people talkin about hidapi, and it indeed seems like a powerful HID library, however, they mention on the website that they want it linkable in any way people want, problem is, I can't seem ...
15
votes
1answer
210 views

Why are most methods of System.Array static? [closed]

I guess this is more of a framework design question. I recently wondered why most of the methods in System.Array are static. My gut reaction always is to use e.g. IndexOf(object) on the Array ...
0
votes
1answer
25 views

Interfacing static and non static methods

Ok so my problem is trying to interface static and non-static methods, an example of both. Regards. Examples: Codeigniter AR(non-static) and php-activeRecord(static) Interface interface ...
3
votes
3answers
60 views

Passing static array in attribute

Is it possible to circumvent the following restriction: Create a static readonly array in a class: public class A { public static readonly int[] Months = new int[] { 1, 2, 3}; } Then pass it ...
1
vote
2answers
99 views

delphi - class static method, static var in multi thread application

I relative new with delphi XE2, I want to know about something, if I have like this code TSomeClass=class strict private class var FCounter:integer; public class procedure ...
0
votes
1answer
7 views

Date Picker show behind static table view cells

Objective - C iOS Development. Hello all. I have a tableView with static cells in three groups. One of those cells is used to open a date picker object. The date picker opens, but appears behind the ...
7
votes
2answers
111 views

Where do static local variables go

Where are static local variables stored in memory? Local variables can be accessed only inside the function in which they are declared. Global static variables go into the .data segment. If both the ...
0
votes
0answers
27 views

gcc plugin c c++ find global nonstatic variables

i've been playing around with the gcc 4.6 plugin api. For convenience i use a python wrapper/plugin for the api. My goal ist to find the declarations of all variables with: global scope and not ...
0
votes
2answers
49 views

pass a variable to an onClick method

So I want to calculate the total amount of time that occurs from when the activity is created and when a button is pressed. I can do that with my current code, but it uses static variables which I ...
0
votes
2answers
21 views

Using magic constants from another scope

I created a class Debug in which all properties and methods are static. Using late static binding I use this class as a logger of what is being done and at which moment (in fact I'm testing now ...
2
votes
1answer
89 views

Extensions method replaces the standard method in C#

There are ways to use extension methods with signatures of standard methods as extension (without explicit appeal to static class)? For example: public class Foo { public override string ...
1
vote
1answer
14 views

Cannot create a cpp project with a static lib in eclipse helios

I am trying to create a static library in eclipse. I select New >> C++ Project>> Static Library >> Empty Project >> Cross GCC. Eclipse then creates a new .a, but in Properties >> C/C++ Build >> ...
1
vote
1answer
36 views

use static variable as key in JSON

I have a problem while building JSONObject MyCustomerClass.groovy class MyCustomerClass { static String MY_NAME = "my_name" public JSONObject formDetails() { def customer = getCustomer() ...
0
votes
5answers
78 views

How to effectively use static methods?

I am never quite sure that I am using static methods correctly. I understand how they work. Let's say I have this class called Player(Java): private int money; private int lot; private String piece; ...
0
votes
1answer
81 views

Is “final static variables ” efficient in Java (Android)?

I'm developing an app in Android. I use a lot "final static" variables to define my constants. But I'm very stric with the memory used by my application. Maybe I have 200 constants (int, string, ...
0
votes
1answer
28 views

static variable is not changing. Yii, OOP

I have a code of index action of SiteController static $cid; public function actionIndex() { if(Yii::app()->request->isAjaxRequest) { //return ajax data, includes this ...
0
votes
4answers
66 views

C++: save variable value for next call of the function

Is there a way to initialize a variable in a function and save its value for next call of function? I'm making application in qt and i have one function connected with a signal. I want an variable in ...
1
vote
3answers
66 views

C# Static Class vs VB.NET Module usage

I'm having difficulty calling a function from a C# Class in a similar way that I call a function from a VB.NET Module. I have a C# class General.cs using System; namespace XYZ.Classes { ...
0
votes
1answer
15 views

Two divs, static div on the left side and fluid div on the right side

Here's my situation: .left { float: left; width: 150px; height: 300px; margin-right: 20px } .right { float: right; max-width: 450px; ...
-2
votes
3answers
32 views

Load from file cannot be referenced from a static content

I don't know what's wrong with my main class. I dont know how to change it to fix it. Computer says: load from file cannot be referenced from static context. If I try to change it, my main class is ...
-1
votes
0answers
7 views

static ARP Table setup [closed]

I want to set up static arp in my virtual network. eg. h1 has 3 interfaces h1-eth0, h1-eth1, lo when I use h1 arp -a to set up the arp table at h1 and then use arp -a to check it at h1. I saw ...
2
votes
1answer
50 views

static keyword by itself in Java

I know what static is.. Globally. So I was looking through a code, to get better in coding myself. I'm looking through the Minecraft source code, and for those who are interested to look there its in ...
0
votes
2answers
38 views

Adding an object into a static collection for a static method

Probably a stupid question, but it has been driving me nuts for some days. First of all, I'm speaking about code embedded in a larger application so the class and the method signature is imposed. So ...
0
votes
0answers
10 views

How is dart VM's production mode faster when ignoring static types? Doesn't it need to do type inference at runtime?

Was just watching this introductory video - http://www.dartlang.org/dart-tips/dart-tips-ep-2.html and the presenter memtioned: Production mode actually gets a speed boost by ignoring static types, ...
1
vote
6answers
62 views

C++ Java static final equivalent

I am using C++ to program a chess game. I want to create two class attributes for the class Board: ROWS and COLUMNS. In Java, I would declare they as static final and everything would work as I want. ...
1
vote
3answers
34 views

Make an image have a static position relative to its parent container?

I'm making an image preview container, found at bottom of the page at this URL: http://cowperthwaite.dev.mybusinessadmin.com/location/51447 At the bottom, you can see that the thumbnail images get a ...
-5
votes
2answers
43 views

can't point to the first object of my array

i've this problem, i'm learning java and trying to do one of my exercise i can't point to the first object of my created array. here the code: public class prova { public static void ...
0
votes
0answers
11 views

Access different functions from static class simultaneously

From my Swing program, I declare a static object of class A. A has 2 public functions func1() and func2(). I have 2 different JFrame objects, one call A.func1() and the other call A.func2(). Is there ...
0
votes
3answers
47 views

C++ unable to set NULL pointer to static variable containing object?

Apologies ahead of time, as I am not even sure how to phrase the question, but I was working on a homework assignment (to which the question is unrelated except that I ran into the problem working on ...
0
votes
2answers
58 views

Cannot `import static` static inner class?

I have a class A with a static inner class inside it called B: import static A.B.*; class A { static class B { static int x; static int y; } public static void ...
1
vote
2answers
32 views

Static files with Flask in production

Usually, the problem is how to serve static files in development environment, while in my case it is the opposite. So I've deployed a Flask application using Apache and mod_wsgi, configured Apache to ...
-1
votes
3answers
22 views

Access constant members of one class inside another class member

I have the following classes: class Mode{ const Enabled = 1; const Disabled = 2; const Pending = 3; } class Product{ public static $Modes = Mode; } I want to access constants of ...
-1
votes
1answer
28 views

nested tag such as {% include “{% static 'some.html' %}” %}

{% load staticfiles %} {% include "{% static 'some.js' %}" %} Having trouble making it work. What's the proper syntax here? Edit. I'm trying to include a *.js file here actually. Does it make ...
0
votes
0answers
4 views

Static Map(Free) open URL in bubble in the same browser without new windows

Is it possible to open URL in bubble in the same browser without new windows for Free static map?
1
vote
5answers
75 views

Do static members enter objects?

This is certainly an elementary question, but I must ask to clarify an issue of mine. If a class member is made static, it may be accessed without instantiation, with a syntax like class.member. When ...
1
vote
1answer
51 views

Calling static jar function from Unity3D

I made and compiled a Android Library, containing a simple class and a simple static function: package moo; public class MyTestClass { public static String Foo(){ return "Foo from Moo"; ...
4
votes
1answer
68 views

Automatic variable has static lifespan if not initialized?

I have the concept of static local variables down pretty well: global lifespan, local scope. Similarly, I understand automatic variables are allocated/deallocated automatically when program flow ...
-5
votes
0answers
36 views

should I use static files in django? [closed]

Should I use django's static files If I need it to css file for my website? Why shouldn't I? How can I overcome this problem without creating separate server? Thanks in advance. Ps is it possible to ...
0
votes
1answer
15 views

Reduce wxWidgets size Mac and disable PNG

I edited the port file to create wxWidgets statically because I wanted to reduce the executable size. At first I used dynamic linking and dylibbundler, but that resulted in ~40 MB size for the Bundle. ...
0
votes
3answers
42 views

Javascript to loop / increment html code with values up to 55

I need to create a list of links in a static (.html) page automatically, is there a way of doing this using JavaScript. I tired a few scripts but couldn't work it out. this is my html... <a ...
6
votes
6answers
367 views

Why would you not use static methods for all private methods?

I'm trying to understand static methods and I've reached a confusing point. Focusing only on methods for this question, if I create an instance of my object (where the class itself is not static) ...
0
votes
2answers
109 views

Reading multiple files, and keeping a set of data for each file.

I want to read a file and save its header in a variable so that when I am rewriting(overwriting) that file, I can just paste the header and carry on with printing the rest of the modified file. The ...
1
vote
0answers
78 views

using together static and dynamic shared memory in a CUDA kernel

I am writing a kernel which makes massive use of shared memory. I need both dynamic and static shared memory arrays. This is an example of what I do: __global__ void kernel() { extern __shared__ ...
2
votes
2answers
27 views

how to use an static var from child class in its parent class with an static method

I want to get the value of the static var that was redeclared in the subclass : class A { private static $echo_var = 'PARENT_ECHO' ; public static function e() { ...
1
vote
5answers
52 views

Defining const static that needs setting up at runtime

I'm making use of a class with a few utilities defined as static methods eg. QDate SSIMUtils::ConvertSSIMDate(QString s) { QDate rtnDt; //...conversion code return rtnDt; } I would like ...
0
votes
1answer
25 views

Static function linker error

I have followed these instruction: is it possible to define the static member function of a class in .cpp file instead of its header file? ...
0
votes
0answers
33 views

Designing classes' structure and nesting by wordplay

I was thinking about new style of class structure that i want to represent here and listen some criticism if this idea is good or bad and why . For me it seems OK for now , But i am sure there is some ...
0
votes
1answer
55 views

Simple static website in GAE with custom 404 error page

I am using GAE for a simple static website with just html/htm pages, pictures etc. I am also using Python 2.7. So i use a straight forward app.yaml and main.py and that works. However, when ...
0
votes
0answers
72 views

Array become empty after it filled

I have a terrible problem in my code. I use this code to compare Arabic characters, every thing is fine in the comparison. I also use an array called numbers to store some statistic numbers within ...

1 2 3 4 5 108