纯真时光

文章
3
资源
1
加入时间
3年0月8天

C++中char和int转化

#include <iostream>#include <windows.h>#include <cstring>using namespace std;int main() { char s1[10] = "wayne"; char s2[10]; int n = 10; itoa(n, s2, 10); strcat(s1,s2); cout &

git push错误: failed to push some refs to

想把本地库提交到远程git库中,就会出现push失败问题(简单来说,就是远程与本地存在不一致的commit情形)。当你在git上对它进行了在线修改,但是没有对本地库进行同步。确保远程代码没问题的情况下,拉取远程代码就行。然后再执行commit提交。...