UNDEF numeric and defined functions in Perl

Source: Internet
Author: User
Tags numeric

1.undef

UNDEF is the default value when variables are not initialized in Perl. When this uninitialized variable is used as an integer, then undef is 0, and when the variable is used as a string, then Undef is an empty string. So when you use a non-initialized variable in Perl, the program runs without problems.

For example:

$sum + = 1;   #该语句第一次被执行时, the sum variable defaults to 0

2.defined function

Determines whether a variable is undef, that is, whether it is initialized. How to use:

Defined ($var);
Note, typically, is used to determine whether a string is an empty string or a undef

3. In addition

You can think of specifying a variable as undef, which means that the variable is initialized. How to use:

$var = undef;
Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.