Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
volScalarField::Internal GbyNu(dev(twoSymm(tgradU()())+Snl) && tgradU()()); volScalarField::Internal G(this->GName(), nut()*GbyNu);
相比于GbyNu,定义G时 这个this->Gname作用是什么?什么情况下需要这个this指针。
this这个太难解释了,最好系统看一下C++。不过this->GName()就是个名字,可以删掉,删掉就没有名字了,不过大部分情况下无所谓。
this->GName()
@李东岳 谢谢老师,大概理解this用法,这个是指向name(),还以为这个命名是起到什么作用,既然一般情况下没区别,那我就不深究了。