Questions tagged [instance]
An instance is a particular occurrence of an object during the time when a computer program is running.
21 questions
-2
votes
1
answer
80
views
Are there any good and modern approaches, to have variables that feel global (no need to pass them around explicitly), yet are local to an instance?
I'm developing a library in JavaScript (TypeScript, actually) which is split into several modules. It's meant to run both on the web and in non-web environments like Node.js.
The library is meant to ...
4
votes
2
answers
2k
views
Should I expose an instance's state with methods?
I've read somewhere about a pattern that is as follows: if it'll change the state of the instance, the method should be named with a verb and return void; and if the method just returns something (...
2
votes
2
answers
224
views
If an object x is an instance of a type T, then what is a type T for a concept C?
In concept-based programming (as in C++ concepts), I am wondering if there is a noun to say that:
A type T is an XXXX of a concept C.
in the same way we can say that:
An object x is an instance of ...
-1
votes
1
answer
433
views
Data sharing on a multi-instance application
I would like to know which architecture is more suitable when considering data sharing between tenants: a Multi-instance (Single-tenant) or Multi-tenant architecture with a database by tenant.
...
2
votes
3
answers
260
views
Are Instanced APIs a Problem in a C Interface?
So an Instanced API is one that behaves like an object. So for example:
foo* GetInstancedAPI();
void MemFuncSetter(foo* fooThis, const int arg);
int MemFuncGetter(const foo* fooThis) const;
This is ...
0
votes
1
answer
111
views
Identifying the use case for instantiation only through existing instances
I was in my CS class when my instructor presented me the following classes:
public class UninstantiableTest {
private static Uninstantiable uninstantiable;
public static void ...
0
votes
2
answers
851
views
Does anonymous object instantiation have advantages over static object creation in this specific case?
In a Java program which I did not made and cannot change, only write extensions for it, the design forces me to create an object which will never be garbage collected. I tested and I can do it through ...
-2
votes
5
answers
5k
views
Why do we need instance variable in object oriented programming?
I've been teaching myself Object Oriented Programming(Ruby) for a while. However, I still don't quite understand some of its core principles, specifically, instance variable. Could somebody please ...
1
vote
1
answer
66
views
How to avoid fetching additional informations when instantiating objects
I'm creating an HTML5 game using javascript and have got some problems during the first instantiation of the objects of the scene.
Scenario
Self-written 2d game engine that supports multiple types ...
-1
votes
1
answer
178
views
How to force user to create new instance of object
I have library with asynchronous thread and application who use them. Application can pass object to library of type provide by library interface. If application does not create new instance of object ...
7
votes
1
answer
10k
views
Log4j logger per class vs logger per application
I am stuck at understanding a concept related to Logger creation, especially in the context of Java EE.
In my experience, I nearly always used one logger per application, with few cases when I needed ...
0
votes
0
answers
66
views
What happens to super handler with instance variables
What will happen if I extend a class A to a controller B, when A has instance variables (private, protected)?
I have a main controller MY_Controller(handler) which has several methods: can_modify (...
2
votes
2
answers
779
views
Python OO problem
I started learning Python yesterday and I ran into a problem. I like to hear some thoughts on it.
As an exercise, I decided to build a chatserver. As part of the exercise, I wanted to write some ...
15
votes
4
answers
5k
views
Singleton or instantiate everytime I use? [duplicate]
I use a class that just extracts data from one known object, and distributes it to other known objects. No persistent configuration or such is needed in that class instance.
How should I decide ...
22
votes
4
answers
239k
views
What are the differences between class variables and instance variables in Java? [closed]
I'm very new to Java and want to understand the difference between class variables and instance variables.
For example:
class Bicycle {
static int cadence = 0;
int speed = 0;
int gear ...