Tagged Questions
Nil aka null, nada, nothing, zero
58
votes
6answers
2k views
Array slicing in Ruby: looking for explanation for illogical behaviour (taken from Rubykoans.com)
I was going through the exercises at http://rubykoans.com/ and I was struck by the following Ruby quirk that I found really unexplainable:
array = [:peanut, :butter, :and, :jelly]
array[0] => ...
48
votes
5answers
8k views
A concise explanation of nil v. empty v. blank in Ruby on Rails
I find myself repeatedly looking for a clear definition of the differences of nil?, blank?, and empty? in Ruby on Rails. Here's the closest I've come:
blank? objects are false, empty, or a ...
37
votes
8answers
10k views
In Objective-C why should I check if self = [super init] is not nil?
I have a general question about writing init methods in Objective-C.
I see it everywhere (Apple's code, books, open source code, etc.) that an init method should check if self = [super init] is not ...
23
votes
3answers
973 views
Why did father of Clojure say that Scheme's true/false are broken?
In this video, Rich Hickey introduced Clojure for Lisp programmers.
At time 01:10:42, he talked about nil/false/end-of-sequence/'() among Clojure/Common Lisp/Scheme/Java. He said: "Scheme has true ...
21
votes
3answers
6k views
When to use nil and NULL in Objective C?
This is a sample code:
NSDictionary *myDictionary = [NSDictionary dictionary];
NSNumber *myNumber = [myDictionary valueForKey: @"MyNumber"];
NSLog(@"myNumber = %@", myNumber); // output myNumber = ...
21
votes
15answers
16k views
Best ruby idiom for “nil or zero”
I am looking for a concise way to check a value to see if it is nil or zero. Currently I am doing something like:
if (!val || val == 0)
# Is nil or zero
end
But this seems very clumsy.
18
votes
3answers
906 views
iphone+Difference between nil,NIL and null
I am newbie to iphone programming, I'm just in the learning stage.
I want to know the difference between nil, NIL and null.
I've googled around and found this:
nil -> Null-pointer to objective- c ...
16
votes
2answers
5k views
Objective-C Difference between setting nil and releasing
I've learned that in dealloc you do [object release]; but in viewDidUnload (in a UIViewController subclass) you do self.object = nil. What is really the difference because self.object = nil (we're ...
16
votes
3answers
3k views
Is It Necessary to Set Pointers to nil in Objective-C After release?
Title says it all I guess.
Is there anything wrong with doing something like
NSString * string = [ [ NSString alloc ] init ];
...
[ string release ];
or is there any value (other than ...
15
votes
4answers
10k views
Objective C : Release, Dealloc, and the Self reference
So I thought I had all these questions all figured out. Then all of a sudden i get an error (a crash) i can't figure out. THen after doing research to remedy the crash, i notice everything that I ...
14
votes
2answers
1k views
Clojure nil vs Java null?
Forgive me if I'm being obtuse, but I'm a little bit confused by the documentation about nil in Clojure. It says:
nil has the same value as Java null.
Does this mean that they're the same thing ...
12
votes
1answer
530 views
Assigned vs <> nil
Is there any difference between If Assigned(Foo) and If (Foo <> nil)? If So, when should they each be used?
9
votes
6answers
231 views
Is there a clean way to avoid calling a method on nil in a nested params hash?
I'm interested in getting the nested 'name' parameter of a params hash. Calling something like
params[:subject][:name]
throws an error when params[:subject] is empty. To avoid this error I usually ...
8
votes
4answers
1k views
When does NSURLConnection's initWithRequest return nil
Does anyone know in which situations initializing a NSURLConnection returns nil instead of the created connection. The documentation says it's possible but fails to specify when this happens.
The ...
7
votes
4answers
3k views
Are NULL and nil equivalent?
Actually my question here is: are null and nil equivalent or not?
I have an example but I am confused when they are equal when they are not.
NSNull *nullValue = [NSNull null];
NSArray *arrayWithNull ...
7
votes
2answers
192 views
Can I get warnings for sending nil objects messages?
I'm aware that it's perfectly fine to send messages to nil objects in Objective-C. However, I am curious if there is any runtime support for flagging such situations. I can see this being useful in ...
7
votes
4answers
1k views
IBOutlet instances are (null) after loading from NIB
I am working on an iPhone app and am getting (null) references to IBOutlet fields in my controller. I have a UIViewController subclass that is set as the File's Owner in my XIB. I have a set of UI ...
6
votes
1answer
66 views
How does foo(&nil) behave differently than foo(&“not a proc”)?
I found out from heckle that
[1, 2, 3].each(&nil)
doesn't cause any errors - it just returns an enumerator.
By contrast,
[1, 2, 3].each(&"")
raises
TypeError: wrong argument type ...
6
votes
4answers
271 views
List without nil in Lisp
Allknowing that in lisp list must contain nil, but expression like
(print (cons 1 (cons 3 2)))
dont throw any errors and prints
(1 3 . 2)
Is it correct?
I use GNU Clisp.
Help me please
6
votes
1answer
2k views
Objective C iPhone when to set object references to nil
I have been developing with objective C and the Cocoa framework for quite some time now. However it is still not absolutely clear to me, when am I supposed to set object references to nil. I know it ...
6
votes
2answers
415 views
Is there a way to trap messages sent to nil in Objective-C?
I've just been bitten by an annoying bug that was made obscure by the "send message to nil is ok" behaviour in Objective-C.
I've seen ...
5
votes
2answers
117 views
Is there a Python library (or pattern) like Ruby's andand?
For example, I have an object x that might be None or a string representation of a float. I want to do the following:
do_stuff_with(float(x) if x else None)
Except without having to type x twice, ...
5
votes
5answers
104 views
Nils and method chaining
I'm just breaking into the ruby world and I could use a helping hand.
Suppose b is nil.
I'd like the following code to return nil instead of a "NoMethodError: undefined method"
a.b.c("d").e
The ...
5
votes
6answers
231 views
Ruby: Nils in an IF statement
I have the following very ugly ruby code in a rails app I'm working on:
if params.present?
if params[:search].present?
if params[:search][:tags_name_in].present?
...
end
end
end
...
5
votes
2answers
2k views
How to create variable argument methods in Objective-C
maybe this will be obviously simple for most of you, but could you please give an example how to create similar methods (in objective-C) and functions in C to create functions like NSString's ...
5
votes
3answers
386 views
Delphi objects, NIL objects and Interfaces
I am looking for hints on how to debugging a crash in an application that uses the MS XML wrappers in the Delphi VCL. I suspect memory corruption, or some kind of obscure evil thing happening ...
5
votes
8answers
5k views
how to add nil to nsmutablearray?
NSArray *array = [[NSArray alloc] initWithObjects:@"ΕΛΤΑ",
@"ΕΛΤΑ COURIER", @"ACS", @"ACS ΕΞΩΤΕΡΙΚΟ",
@"DHL", @"INTERATTICA", @"SPEEDEX",
...
5
votes
1answer
1k views
Return nil on NSInteger return type method
I have the following UITableView DataSource method:
- (NSInteger)tableView:(UITableView *)tableView sectionForSectionIndexTitle:(NSString *)title atIndex:(NSInteger)index
On some items (i.e. ...
4
votes
1answer
68 views
Lisp, add new list to db in “for” loop, why returning NIL?
I wonder, how can I print in LISP each new value from loop "for" in new list, which each time creates by calling the function.
I have created the func:
(defun make (id name surname) (list :id id ...
4
votes
1answer
69 views
Converting `false` into `nil`
When you want to convert a varible v into false when it is nil/false and true otherwise, there is an easy way to do it:
!!v
But is there an easy way to convert v into nil when it is nil/false and ...
4
votes
2answers
104 views
What is the purpose of NilClass, TrueClass, and FalseClass
NilClass, TrueClass and FalseClass having one instance each, namely nil, true and false, which are constants, what is the purpose of having these classes? Why cannot they be instances of the Object ...
4
votes
1answer
54 views
“error:NULL” or “error:nil”?
Just trying to figure out what's the best practice: when using method that takes (NSError**), is it better to send it nil or NULL?
For example,
NSArray *items = [[NSFileManager defaultManager] ...
4
votes
1answer
59 views
Confusion about ruby Array [] method results when starting index greater than (array.size -1)
Given
array = [:a,:b,:c,:d] # with 4 elements:
array[3] => :d # zero-based indices, I get that
array[4] => nil
array[5] => nil
array[3,0] => [] # OK since I asked for a slice with ...
4
votes
5answers
105 views
Idiomatic Ruby - Execute a function until it returns a nil, collecting its values into a list
I stole my title from this post: Executes a function until it returns a nil, collecting its values into a list
That question refers to Lisp and is, frankly, over my head. However, I think that his ...
4
votes
2answers
208 views
Objective-C: Why check nil before respondsToSelector:?
I've seen code like:
if (delegate != nil && [delegate respondsToSelector:@selector(doSomething)]) ...
But, sending a message to nil just returns nil (which evaluates to NO), so why not just ...
4
votes
4answers
168 views
Rails: Sort nils to the end of a scope?
So, I have the following scope in my Photo model:
scope :best, order(:average_rating.desc)
The only problem is, the ratings were added to the model after the fact, so the production app has a lot ...
4
votes
4answers
1k views
Is there a Ruby, or Ruby-ism for not_nil? opposite of nil? method?
I am not experienced in Ruby, so my code feels "ugly" and not idiomatic:
def logged_in?
!user.nil?
end
I'd rather have something like
def
user.not_nil?
end
But cannot find such a method ...
4
votes
2answers
2k views
Check if a BOOL is set (can't be done with ==nil)
how do i check if a BOOL is set in objective-c (iphone)?
i know that it can be done with an int or float this way:
NSNumber *Num = [prefs floatForKey:@"key"];
for example
4
votes
9answers
635 views
What describes nil best? What's that really?
Currently I understand it as a kind of "empty object". But what's it really?
3
votes
2answers
792 views
Is there any problem using self.property = nil in dealloc?
I know declared property generates accessor method which is someway just syntax sugar.
I found quite a lot people use self.property = nil in their dealloc method.
1) In Apple's Memory Management ...
3
votes
2answers
163 views
What is the meaning of nil owner in component constructor
I was looking at this question and I'm wondering now, what is the meaning of nil as the owner in component constructor.
SomeComponent := TSomeComponent.Create(nil);
I know, that I should free it by ...
3
votes
5answers
1k views
Objective-C: What's the difference between NULL, nil and @“”?
As the title says, what's the difference between NULL, nil and @"" ?
For example, if I want to check a string in a dictionary is empty.
Which condition should I use ?
if ([dictionary ...
3
votes
2answers
394 views
nil in gdb is not defined as 0x0?
I was stepping through some simple Objective-C code with gdb (inside of Xcode) and noticed something strange. Here is the relevant snippet:
NSString *s = nil;
int x = (s == nil);
As I'd expect, ...
3
votes
1answer
84 views
Rails variable loads first time and then is nil!
I am receiving the following error:
ActionView::TemplateError (You have a nil object when you didn't expect it!
You might have expected an instance of Array.
The error occurred while evaluating ...
3
votes
2answers
480 views
Obtaining ActiveRecords if NOT nil
I would like to be able to gather all records in a table where the user_id is not null.
This is what I have but it doesn't seem to be working (even though I've had it working in a seperate project):
...
3
votes
1answer
81 views
Change nil's to zeroes in elisp
I'd like to ask - what is the function doing nil conversion from nil's to zeroes in elisp?
I'm a newbie and I think I am inventing the wheel with my code:
(defun chgnull (x)
(if (null x) 0 1))
...
3
votes
1answer
369 views
-sizeWithFont Functions Differently on Device
So I am seemingly encountering some strange behavior when using NSString's -sizeWithFont family of method calls depending on whether or not I'm invoking it on the iPhone Simulator or an actual device.
...
3
votes
1answer
173 views
What's the effect in Ruby when you initialize with nil: x = String(nil)
What's the effect in Ruby when you pass nil to the constructor as in:
s = String(nil)
or
a = Array(nil)
Does this mean that s or a is nil or that s or a is an unpopulated object of type String ...
2
votes
1answer
49 views
iPhone - EXC_BAD_ACCESS when setting nil to an IBOutlet - Memory Management
I'm facing an annoying issue and I can't find out why.
I have a UIViewController I present in modal like that :
interviewsViewController *interviewsVC = [[interviewsViewController alloc] ...
2
votes
6answers
117 views
Not assigning nil values to a hash
Is there a short hand or best practice for assigning things to a hash when they are nil in ruby? For example, my problem is that I am using another hash to build this and if something in it is nil, it ...