摘要: $@ "$@" $* "$*" a.sh echo "$@" echo $@ echo "$*" echo $* b.sh "$@" b.sh $@ b.sh "$*" b.sh $* b.sh echo $# for param; do echo "param = $param" done 阅读全文
posted @ 2023-04-09 23:29 ascertain 阅读(11) 评论(0) 推荐(0) 编辑
摘要: C goto Must be defined within a function Each label in one function must have a unique name. It cannot be a reserved C keyword C has a separate namesp 阅读全文
posted @ 2023-04-09 20:24 ascertain 阅读(9) 评论(0) 推荐(0) 编辑
摘要: The switch expression has an additional lambda-like syntax and it can be used not only as a statement, but also as an expression that evaluates to a s 阅读全文
posted @ 2023-04-09 17:39 ascertain 阅读(62) 评论(0) 推荐(0) 编辑
摘要: In Java, C, $ is valid In Go, Python, $ is invalid 阅读全文
posted @ 2023-04-09 14:39 ascertain 阅读(7) 评论(0) 推荐(0) 编辑