标签: erlang
$符号是什么意思?
例如:
is_digit(Ch) -> $0 =< Ch andalso Ch =< $9.
我也看到它被输入类似:
$(, $), $+, $*
答案 0 :(得分:8)
$用于表示ASCII中的字符。例如
$
1> $a. 97 2> $1. 49 3> [49,50]. "12" 4> $\n. ### newline character 10
您的功能是指字符输入是否为数字。