C把字符串'0'转换为int 0(零),怎么样?

时间:2016-12-28 15:56:20

标签: c casting char int type-conversion

如何将文字imports: [ MaterialModule.forRoot() ],转换/转换为char '0'

即:

int 0

1 个答案:

答案 0 :(得分:4)

ch = 0;

现在,如果您想将任何数字字符转换为其数字等效字符,您需要以下内容:

ch = ch - '0';