我有个C++的问题在linux底下。
我需要读文件(文件其实是matrix)比如:
1 2 1
3 2 1
3 1 2
P1)我已经把每行弄成string了。用atoi()不太好使。大家有什么建议或连接可以参考。
P2)c++里std exception里能handle non-existing file exception?每次我开一个non-existing file它都试着建一个,这个问题不是太重要不过想知道下。
在c 里可以用 ios::nocreate flag 阻止。不知道c++怎么办。自己写function handle?
谢谢任何建议。
我需要读文件(文件其实是matrix)比如:
1 2 1
3 2 1
3 1 2
P1)我已经把每行弄成string了。用atoi()不太好使。大家有什么建议或连接可以参考。
P2)c++里std exception里能handle non-existing file exception?每次我开一个non-existing file它都试着建一个,这个问题不是太重要不过想知道下。
在c 里可以用 ios::nocreate flag 阻止。不知道c++怎么办。自己写function handle?
谢谢任何建议。