Shaodong Ma

Results 3 issues of Shaodong Ma

https://github.com/youngxhui/GinHello/blob/e6d9dfd267ba51cd1defe4f7e22dfa8218334976/handler/userHandler.go#L38 这里如果是将整数直接转为字符串显示,应该考虑使用 strconv.FormatInt((int64(u.Id)) string(u.Id) 将生成一个rune 值为 u.Id 值的字符串。

https://github.com/StevenBaby/onix/blob/748013c6ace822c0034c95291c41e0033f24c1bd/src/include/onix/types.h#L28 1、应该使用 typedef signed char int8; 因为 char 的符号类型标准未明确,取决于编译器实现。 2、如何判断出 int 就是 int32 而 long long 就是 int64,之前看有 LP32、LP64这些,如果自己写话要如何精确定义。 ref: https://zh.cppreference.com/w/cpp/language/types https://www.ibm.com/docs/en/zos/2.1.0?topic=options-lp64-ilp32

#### What type of PR is this? #### What this PR does / why we need it: #### Which issue(s) this PR fixes: Fixes # Input is empty because the...