MiraiForum

    • Register
    • Login
    • Search
    • Popular
    • Recent
    • Unsolved
    • Tags
    • Groups
    • 友情链接
    1. Home
    2. xtyuns
    X
    • Profile
    • Following 0
    • Followers 0
    • Topics 1
    • Posts 2
    • Best 0
    • Controversial 0
    • Groups 0

    xtyuns

    @xtyuns

    0
    Reputation
    3
    Profile views
    2
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    xtyuns Unfollow Follow

    Latest posts made by xtyuns

    • 关于 byte2long 的转换问题

      ByteArray2Long 最后为什么要将 高 32 位与低 32 位进行或运算,求各位解答

      private fun ByteArray.pack(offset: Int, len: Int): Long {
          var result: Long = 0
          val maxOffset = if (len > 8) offset + 8 else offset + len
          for (index in offset until maxOffset) {
              result = result shl 8 or (this[index].toLong() and 0xffL)
          }
          return result shr 32 or (result and UINT32_MASK)
      }
      
      posted in 技术交流板块
      X
      xtyuns
    • RE: 有没有什么方法可以绕过公告和插件版本验证

      可以在启动参数中添加 --boot-only 来实现你所需要的效果

      posted in 开发交流
      X
      xtyuns