?? read_it_file.cpp
字號:
#include <itpp/itcomm.h>using namespace itpp;int main(){ // Declare the it_file class it_file ff; // Open the file "it_file_test.it" for reading ff.open("it_file_test.it"); // Read the variable a from the file. Put result in vector a. vec a; ff >> Name("a") >> a; // Print the result std::cout << "a = " << a << std::endl; // Exit the program return 0;}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -