评估/执行Golang代码/表达式就像JavaScript的eval()
JavaScript的eval()方法允许评估和执行代码/动态表达。这就提出了一个问题:Go 中是否存在类似的功能。
解决方案
是的,可以使用以下方法来计算和执行 Go 代码/表达式,特别是表达式:来自 Go 标准库的 eval.go 包。
要实现此目的,需要以下工作流程:
示例
考虑提供的 JavaScript 代码:
var x = 10; var y = 20; var a = eval("x * y") + "<br>"; var b = eval("2 + 2") + "<br>"; var c = eval("x + 17") + "<br>"; var res = a + b + c;
以下 Go 代码演示了如何计算这些表达式:
import ( "fmt" "go/types" ) func main() { // Create a package pkg := types.NewPackage("main", "go.example.org/eval") // Create a scope scope := types.NewScope(pkg, types.Universe) // Insert constants scope.Insert(types.NewConst(types.NewVar(scope, "x", types.Int), types.Typ[types.Int], 10)) scope.Insert(types.NewConst(types.NewVar(scope, "y", types.Int), types.Typ[types.Int], 20)) // Evaluate expressions res := evalExpression(scope, pkg) fmt.Println(res) // 200\n4\n27 } func evalExpression(scope *types.Scope, pkg *types.Package) string { expr, _ := types.ParseExpr("x * y + \"\n\"") result, _ := eval.Eval(expr, pkg, scope) return result.String() }
以上是Go 中是否有相当于 JavaScript eval() 函数的动态代码评估函数?的详细内容。更多信息请关注PHP中文网其他相关文章!