动作脚本到 java (red5)
我正在尝试将现有的actionscript 程序(服务器部分)迁移到java(red5)。 但是,我被以下代码阻止:
Client.prototype.requestInterview = function () { };
有谁知道 Red5 中 Client.prototype 的等价物是什么?
I'm trying to migrate an existing actionscript program (server part) to java (red5).
However, I'm blocked with the following code :
Client.prototype.requestInterview = function () { };
Does anyone know what is the equivalent of Client.prototype in red5?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
通过在“原型”中定义对象(在您的情况下是函数),您基本上是在定义类成员。 在你的情况下,它将是常规实例方法(在java中是公共的)
By defining object (function in your case) in "prototype", you are basically defining class member. In your case it would be regular instance methods (public in java)