将 C# 代码转换为 PL/SQL 代码
我有用 C# 编写的代码,需要转换为 PL/SQL 代码。 C#代码:
long n1=563272302, n2=369098752;
n1 ^= 0x000000004892011bL ^ n2;
运行后结果为:
n1=2130762613
I have code written in C# and need to convert to PL/SQL code.
Code C#:
long n1=563272302, n2=369098752;
n1 ^= 0x000000004892011bL ^ n2;
Result after operation is:
n1=2130762613
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这里
http://www.oracledba.co.uk/tips/bitwise_ops.htm
您将了解如何向 PL/SQL 添加按位 XOR 函数。
有了这个函数,它应该是(未经测试):
Here
http://www.oracledba.co.uk/tips/bitwise_ops.htm
you find how to add a bitwise XOR function to PL/SQL.
With this function it should be (untested):