gpt4 book ai didi

scheme - 如何将符号 a 与字符 a 进行比较?

转载 作者:行者123 更新时间:2023-12-04 00:47:46 24 4
gpt4 key购买 nike

我有一个包含字母的列表。
当我做 (car '(a)) 时,它给了我符号 a。
我如何将它与字符 a 进行比较?

我必须做 (eq? (car list) (car '(a)) 吗?

最佳答案

符号和字符是不同种类的数据。幸运的是,Scheme 愿意让你转换几乎任何你想要的东西。在 Racket 中,例如:

#lang racket

;; the symbol a:
'a

;; the character a:
#\a

;; are they equal? no.
(equal? 'a #\a) ;; produces #f

;; converting a character to a symbol:
(define (char->symbol ch)
(string->symbol (string ch)))

(char->symbol #\a) ;;=> produces 'a

;; converting a symbol to a character
(define (symbol->char sym)
(match (string->list (symbol->string sym))
[(list ch) ch]
[other (error 'symbol->char
"expected a one-character symbol, got: ~s" sym)]))

(symbol->char 'a) ;; => produces #\a

综上所述,如果您正在做家庭作业,那么老师几乎肯定会为您准备一条更简单的路径。

关于scheme - 如何将符号 a 与字符 a 进行比较?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5397144/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com