如果有人能解决这个问题,那么你就可以完成我的一周了!
基本上,我尝试做的是根据Wordpress上的用户角色在选项中回显不同的值。
如果用户是管理员echo = user@email.com 如果用户是订阅者echo = admin@email.com
以下是我正在使用的代码:
library(Rcpp)
sourceCpp("myFun.cpp")
> myFun(1:10)
[1] 1 4 9 16 25 36 49 64 81 100
答案 0 :(得分:0)
你试过这个吗?
class MyClass {
private _with:number = 5;
private _height:number = 3;
get square() {
return this._with * this._height;
}
}