1
vote
4answers
54 views
php Array Initialization
Hi,
I need to initialize an array of objects in PHP.
Presently I have the following code:
$comment = array();
And when i am adding an element to the array
public function addComment($c){
…
1
vote
2answers
69 views
Initialize in Ruby
I used to have this
public constructor_name() {
this(param)
}
public constructor_name(int param) {
this.param = param
}
in Java and what about ruby do we have this kind of self reference …
0
votes
1answer
82 views
How to specify WPF Theme in c#?
Hi !
I found out that I can use a different theme in an C# WPF Application by adding the theme .xaml-file to the project and add
to App.xaml as a Resource. see …
4
votes
8answers
142 views
How to initialize a class?
The problem is really simple, I have a class "Stock", I want to load its property "StockName", "StockCode' from the db.
so which patten should I use?
pattern 1) Use service class to create it
…
0
votes
0answers
11 views
Initialize custom class according to user selection
Hi,
I have a navigation based application with two levels, in the second level the user select an option which should cause initialization and loading of the proper Nib file (there is a Nib file for …
1
vote
1answer
50 views
Ruby Style: should initialize take a file with data or just the raw data as parameters
Hello,
I was curious if anyone had insight on what is the best way for an object to load data from a file in Ruby. Is there a convention? There are two ways I can think of accomplishing this:
Have …
1
vote
2answers
37 views
initialize all hashes with a default_proc
I wanted to extend the Hash class so that all hashes get same default_proc when they're created. So I put this in my file:
class Hash
def initialize
self.default_proc = proc { |hash, key| raise …
0
votes
3answers
409 views
iPhone dev - create array in init or viewDidLoad
In my UIViewController subclass should I initialize the NSArray of data for the UIPickerView in init or in viewDidLoad and why? Thanks.
0
votes
1answer
355 views
iPhone Development - Setting up a view in a view controller
Hi, I'm learning to develop for iPhone without Interface Builder (a personal preference), and I'm not sure which function of a view controller I should be setting up the view in: init, viewDidLoad, or …
0
votes
5answers
492 views
Initialize Global Variables in PHP
Is it good practice to initialize a global variable in PHP? The snippet of code seems to work fine, but is it better to initialize (in a larger project, say for performance sake) the variable outside …
0
votes
1answer
157 views
Creating a Pop up and setting its view state before it displays
Hi,
I am a beginner developer in Flex, and I have been using viewstates lately. I had a couple of custom popup titlewindow components that are initialised using:
PopUpManager.createPopUp(this, …
6
votes
3answers
392 views
DRY’er Object Initialization in Ruby
Hi,
Is there a more 'DRY' way to do the following in ruby?
#!/usr/bin/env ruby
class Volume
attr_accessor :name, :size, :type, :owner, :date_created, :date_modified, :iscsi_target, …
2
votes
6answers
497 views
How to initialise a C program using file, environment and/or command line?
In C, how to configure the initial settings for some program, using key-value pairs, with any or all of: a plain text configuration file, environment variables, and options on the command line. Also, …
0
votes
7answers
217 views
How to work out 1D array If I can’t predict it’s length?
Duplicate
Array of Unknown Length in C#
How do I initialize string[] without a need of initializing the length? I want it to be dynamic array, so when I add something, Length increases and no …
0
votes
6answers
126 views
int issue in g++/mysql/redhat
Hi -
I haven't written C in quite some time and am writing an app using the MySQL C API, compiling in g++ on redhat.
So i start outputting some fields with printfs... using the oracle api, with …
