摘要: 参考链接:https://blog.csdn.net/m0_37362454/article/details/88639668 #include <stdio.h> int main() { unsigned char ch = 23; printf("ch = %hhu\n", ch); retu 阅读全文
posted @ 2019-12-10 15:10 salami_china 阅读(6191) 评论(0) 推荐(0) 编辑
摘要: 原文链接:https://www.cnblogs.com/mafeng/p/10250367.html a := []int{0, 1, 2, 3, 4} //删除第i个元素 i := 2 a = append(a[:i], a[i+1:]...) 阅读全文
posted @ 2019-12-10 15:05 salami_china 阅读(2170) 评论(0) 推荐(0) 编辑