标签: c casting char int type-conversion
如何将文字imports: [ MaterialModule.forRoot() ],转换/转换为char '0'?
imports: [ MaterialModule.forRoot() ],
char '0'
即:
int 0
答案 0 :(得分:4)
ch = 0;
现在,如果您想将任何数字字符转换为其数字等效字符,您需要以下内容:
ch = ch - '0';