Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
9answers
376 views

C# constructors

Could someone advice me on what approach to take when writing C# constructors? In other languages, like C++, everything is fine - you usually don't make the internal fields visible and provide ...
4
votes
2answers
102 views

can somebody explain how this works?

I have this line of code. class ButtonPanel extends JPanel implements ActionListener { public ButtonPanel() { yellowButton = new JButton("Yellow"); and It works, I thought Java ...
4
votes
5answers
574 views

'Bracket initializing'. (C++)

I'm learning C++ at the moment, C++ Primer plus. But I just felt like checking out the cplusplus website and skip a little forward to file handling. I pretty much know the basics of file handling ...
4
votes
7answers
1k views

Dynamically allocating and setting to zero an array of floats

How do I automatically set a dynamically allocated array of floats to zero(0.0) during allocation Is this OK float* delay_line = new float[filter_len]; //THIS memset(delay_line, 0.0, filter_len); ...
3
votes
3answers
406 views

How to make my Java destop application show an image before it starts?

I'm using NetBeans IDE 6.8 (Mac Version). which tool of their GUI builder will assist me in doing this? What I want is is to show the user an image while my application is loading for couple of ...
2
votes
1answer
78 views

Initializing variable in for-loop

I have code like this: TextView wyniszczenie_zakres_bmi = (TextView)t.findViewById(R.id.wyniszczenie_zakres_bmi); TextView wychudzenie_zakres_bmi = ...
2
votes
5answers
231 views

Initializing an array of struct in one line? (in C)

I have a 2d array of structs like this, MapStruct myMap[50][50]; So we can initialize like this, myMap[0][0].left = 0; myMap[0][0].up = 1; myMap[0][0].right = 5; I know that I can also use the ...
2
votes
1answer
242 views

initializing structs using user-input information

I am trying to make a program that works with poker (texas holdem) starting hands; each hand has a value from 1 to 169, and i want to be able to input each card and whether they are suited or not, and ...
1
vote
2answers
80 views

ios, objective-c - initializing object inside a block

I had a strange problem. I have some code (c++ mixed with objective-c) written for ios. I have following class: class Data { public: NSMutableDictionary *dict; void DoSomeStuff() ...
1
vote
2answers
202 views

“Initializing” the pointer in the separate function in C

I need to do a simple thing, which I used to do many times in Java, but I'm stuck in C (pure C, not C++). The situation looks like this: int *a; void initArray( int *arr ) { arr = malloc( ...
0
votes
0answers
11 views

What is the meaning of the log from tag:“szipinf” and text:“Initializing inflate state” from Logcat

I am a new programmer for Android, so please excuse my knowledge and also my English because it is not my first language. So I am having a log with the tag:"szipinf" and text:"Initializing inflate ...
0
votes
3answers
63 views

jQuery DataTables as per their tutorial not loading javascript array

I am trying to use jQuery Datatables to paginate a query that i get from a database. The query used involves a lot of formating and joining many queries together, so I opted to build a finished array ...
0
votes
5answers
77 views

Why doesn't this initialize correctly?

I'm trying to initialize a class constructor within another constructor. The GCC raises the error, 'Type 'foo' does not have a call operator.'This psuedo-code should explain my intentions. class foo ...
0
votes
2answers
230 views

Structure initialization as argument

I try to send some struct into STL list; struct obj { int a; int b; } list < struct obj> mylist; struct obj a = { 0, 1}; mylist.push_back ( a); Is there any other way to initialize ...
0
votes
1answer
273 views

NSTextView doesn't initialize when I call readFromData:(NSData *)data ofType:(NSString*)string

I have a refreshDisplay: method that calls the setString: method of an NSTextView. I can save, and load, but when I load even though my program loads the data, it does not display it on the NSTextView ...
-1
votes
6answers
147 views

Initializing members of derived class (C++)

What is the preferred method for initializing a derived class that was casted from it's base class? Consider the following scenario: class A{ public: A(); ~A(); ...