问题1
问题描述
Line 522: Char 69: runtime error: applying non-zero offset 18446744073709551615 to null pointer (basic_string.h)
报错原因
string res = 0
报错分析
这里报错的原因是因为使用了int
整型变量来初始化string
。
Line 522: Char 69: runtime error: applying non-zero offset 18446744073709551615 to null pointer (basic_string.h)
string res = 0
这里报错的原因是因为使用了int
整型变量来初始化string
。