Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
6answers
999 views

How can you get Perl to stop when referencing an undef value?

How do you get Perl to stop and give a stack trace when you reference an undef value, rather than merely warning? It seems that use strict; isn't sufficient for this purpose.
6
votes
4answers
127 views

Perl: mapping to lists' first element

Task: to build hash using map, where keys are the elements of the given array @a, and values are the first elements of the list returned by some function f($element_of_a): my @a = (1, 2, 3); my %h = ...
4
votes
4answers
612 views

In Perl, is there graceful way to convert undef to 0 manually?

I have a fragment in this form: my $a = $some_href->{$code}{'A'}; # a number or undef my $b = $some_href->{$code}{'B'}; # a number or undef $a = 0 unless defined($a); $b = 0 unless defined($b); ...
3
votes
4answers
2k views

How can I print a literal 'null' for undefined values in Perl?

I am running a query 'describe table' and it returns value of 'null' for the 'default' column. However, when I try to print the value from database to an HTML table it is not printing 'null'. It is ...
3
votes
9answers
2k views

Check for value definedness in C++

I'm working in C++ and I need to know if a scalar value (for instance a double) is "defined" or not. I also need to be able to "undef" it if needed: class Foo { public: double get_bar(); ...
2
votes
3answers
281 views

Perl - Is there a built-in function to clear all variable values

I'm looking for a way to clear all of my arrays in a Perl program. Currently, I'm calling a subroutine that explicitly "resets" all arrays: sub clear_arrays{(@array1,@array2,@array3)=((),(),());} ...
2
votes
2answers
343 views

Warnings in Perl Eval

I need to hide warnings within eval but the rest of the code should continue to throw warning messages. Here is what I have - eval "\$value = $hash->{key}"; now value of $hash->{key} could be a ...
2
votes
1answer
83 views

Why does defined function not work?

I have a piece of code which does not work as I expect it to work. MAinly the defined function does not work. @jobs = qw[job1 undef job2]; if(defined($jobs[1])) { print "Job 1 is defined"; } I ...
2
votes
2answers
288 views

practical use for undef [closed]

Possible Duplicate: undef - Why would you want to undefine a method in ruby? Can anyone lay out a practical use for undef in ruby? I'm coming from languages like javascript and python that ...
2
votes
3answers
152 views

I am a bit lost as to the meaning of this C preprocessor statement,

So, to start off, here's the code, with actual names switched for generic ones to limit confusion. /* Get the list of Hotkey commands */ #define A_COMMANDS_MACRO(a, b, c, d) a = b , enum { #include ...
2
votes
3answers
241 views

Good way to document #undef in doxygen

I currently have a couple of #define in c files that turn off some functionality to hardware for testing. However, I want to document them with doxygen when they are undefined as well. For example: ...
2
votes
3answers
387 views

Why is 'undef' not detected by this Perl fragment?

I would expect the block in the second 'if' statement to be entered because of the undef value but the logs show that it isn't being entered. sub getcmd{ my $self = $_[0]; if ( $self->_recv == ...
2
votes
3answers
1k views

How can I render undefined values from printf in Perl?

I'm looking for an elegant way to denote undefined values in situations where formatted numbers usually render. I'll work up a small example. For starters, you of course can't use this: ...
1
vote
1answer
367 views

Assigning multiple values in perl, trouble with undef

I want to return several values from a perl subroutine and assign them in bulk. This works some of the time, but not when one of the values is undef: sub return_many { my $val = 'hmm'; my ...
0
votes
1answer
60 views

loop through headers in C preprocessor

Is there a way to loop through all the included/defined header files and then #undef them all? If looping is the issue, is there another way to #undef all of them with ease?
0
votes
2answers
119 views

perl out of memory message processing just 64 XML file each of 2MB - unix

I tried globalising variables and undef , increasing data segment space in unix , localising variable , but still getting the same error. I need to process around 750 files .Can anyone help? Thanks. I ...
0
votes
1answer
143 views

#undef main gives no result

I'm working with MVisualC++ 2010 and when I try to undefine the "main", there's no result and the console launches as usual. I was expecting some missing entry point error or something. Why is that? ...
0
votes
2answers
311 views

scope of #undef C++

I have a question about using #undef to redefine macros. I have a file global.h which contains a number of #define-d macros. In the code that uses these macros, I find that the values that the macros ...