g***s 发帖数: 3811 | 1 Numerical recipes in C [electronic resource] : the art of scientific computing
/ William H. Press ... [et al.].中的一个函数一开始有这样一个宏:
#define GET_PSUM \
for (j=1;j<=ndim;j++) {\
for (sum=0.0,i=1;i<=mpts;i++) sum+=p[i][j];\
psum[j]=sum;}
我的问题是这里的三个反斜杠,"\",是什么意思?
是不是那本书作者在排版的时候想说,要把这四行写在同一行中? 要是这样的话,我在edit
的界面中一行写不下怎么办?
初级问题,见笑了 | n*c 发帖数: 5 | 2
computing
edit
"\" in C is continue of line (续行), so you just need to type in
what's in the book.
【在 g***s 的大作中提到】 : Numerical recipes in C [electronic resource] : the art of scientific computing : / William H. Press ... [et al.].中的一个函数一开始有这样一个宏: : #define GET_PSUM \ : for (j=1;j<=ndim;j++) {\ : for (sum=0.0,i=1;i<=mpts;i++) sum+=p[i][j];\ : psum[j]=sum;} : 我的问题是这里的三个反斜杠,"\",是什么意思? : 是不是那本书作者在排版的时候想说,要把这四行写在同一行中? 要是这样的话,我在edit : 的界面中一行写不下怎么办? : 初级问题,见笑了
| g***s 发帖数: 3811 | 3 Thank you very much.
【在 n*c 的大作中提到】 : : computing : edit : "\" in C is continue of line (续行), so you just need to type in : what's in the book.
|
|