JVM 语言的探索发现
又在 WIKI 上溜达了一下 https://en.wikipedia.org/wiki/List_of_JVM_languages,有一些新的发现:
ColdFusion Markup Language (CFML), 和设想的 https://www.cnblogs.com/inshua/p/17434305.html 相似
Ballerina,开始有点震惊,有一部分和我的构想相似,但是看了看细节,凑合吧,让人惊叹的是完成度很高。例如
这个语言甚至支持对 RESTful 请求的 Literal,很有意思。
为什么说凑合呢?例如它号称支持消息队列,怎么支持的呢?
// https://central.ballerina.io/ballerinax/kafka
kafka:ConsumerConfiguration consumerConfiguration = {
groupId: "group-id",
topics: ["kafka-topic-1"],
pollingInterval: 1,
autoCommit: false
};
listener kafka:Listener kafkaListener = new (kafka:DEFAULT_URL, consumerConfiguration);
service on kafkaListener {
remote function onConsumerRecord(kafka:Caller caller, kafka:ConsumerRecord[] records) {
// processes the records
...
// commits the offsets manually
kafka:Error? commitResult = caller->commit();
if commitResult is kafka:Error {
log:printError("Error occurred while committing the offsets for the consumer ", 'error = commitResult);
}
}
}
对 rabbitmq 的也类似,https://central.ballerina.io/ballerinax/rabbitmq 。并没有纳入语言本身进行思考。
另外,没想到 Benshell 的实现和我的 VBAInterpreter 非常相似。https://github.com/beanshell/beanshell/blob/master/src/main/java/bsh/BSHBlock.java#L93C48-L93C48
class BSHBlock extends SimpleNode {
.... ....
public Object eval( CallStack callstack, Interpreter interpreter,
Boolean overrideNamespace ) throws EvalError {
if ( isSynchronized ) {
// First node is the expression on which to sync
Node exp = jjtGetChild(0);
Object syncValue = exp.eval(callstack, interpreter);
synchronized( syncValue ) { // Do the actual synchronization
return evalBlock(
callstack, interpreter, overrideNamespace, null/*filter*/);
}
}
return evalBlock(
callstack, interpreter, overrideNamespace, null/*filter*/);
}
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】博客园携手 AI 驱动开发工具商 Chat2DB 推出联合终身会员
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步