标签: signed

无符号与带符号数作为索引

在.Net中使用带符号数作为索引的理由是什么?

在Python中,您可以通过发送负数来从数组的末尾开始索引,但在.Net中不是这种情况.对.Net来说,以后添加这样的功能并不容易,因为它可能会在索引时使用特殊规则(是的,一个坏主意,但我猜它会发生)破坏其他代码.

并不是说我曾经需要索引大小超过2,147,483,647的数组,但我真的不明白为什么他们选择签名数字.

是不是因为在代码中使用带符号的数字更为正常?

编辑:我刚刚找到这些链接:

C/C++中无符号迭代的危险

签名字长和索引

编辑2:好的,Matthew Flaschen发布的帖子还有其他几个很好的理由:

  • 历史原因,因为它是一种类似c语言
  • 与c互操作

.net indexing unsigned signed

9
推荐指数
2
解决办法
430
查看次数

共识?MySQL,签名VS无符号主/外键

关于已签名和未签名的键值,我已经看到了一些关于每个人现在正在做什么的线索.似乎无符号是最佳的,因为它允许相同成本的两倍数量的行.签名密钥有什么好处吗?

有没有标准的共识?似乎签名是答案,因为"它一直是这样"

mysql unsigned signed integer primary-key

9
推荐指数
1
解决办法
2395
查看次数

如何将十六进制字符串转换为有符号整数?

我得到一个十六进制字符串,需要转换为带符号的8位整数.目前我正在使用Int16/Int32进行转换,这显然不会给出8位整数的负值.如果我在十六进制中得到值255,我如何将其转换为十进制的-1?我假设我想使用sbyte,但我不确定如何正确地获得该值.

.net c# hex signed integer

9
推荐指数
2
解决办法
1万
查看次数

Little-Endian签名整数

我知道WAV文件格式使用16位样本的有符号整数.它还以little-endian顺序存储它们,这意味着最低的8位先到,然后是下一个,等等.第一个字节是特殊符号位,还是特殊符号位总是位于最高位(最高值) ?

含义:
哪一个是WAV格式的符号位?

++---+---+---+---+---+---+---+---++---+---+---+---+---+---+---+---++
|| a | b | c | d | e | f | g | h || i | j | k | l | m | n | o | p ||
++---+---+---+---+---+---+---+---++---+---+---+---+---+---+---+---++
--------------------------- here -> ^ ------------- or here? -> ^
Run Code Online (Sandbox Code Playgroud)

我还是p?

signed endianness

9
推荐指数
2
解决办法
1万
查看次数

将无符号字节转换为有符号字节

有没有一种简单而优雅的方法可以将无符号字节值转换为java中的有符号字节值?例如,如果我只有int值240(二进制(24位+ 11110000)= 32位),我怎样才能得到这个int的有符号值?

java unsigned signed byte

9
推荐指数
4
解决办法
3万
查看次数

添加签名到无符号时如何判断溢出

我在向无符号位置添加有符号偏移时尝试检测溢出

uint32 position;
int32 offset;  // it could be negative
uint32 position = position+offset;
Run Code Online (Sandbox Code Playgroud)

如何检查结果是溢出还是下溢?

我想到了一个丑陋的方式,但不确定它的正确性.

  • 下溢: offset < 0 && position + offset >= position
  • 溢出: offset > 0 && position + offset <= position

而且我也想知道是否有一种更优雅的方式来做到这一点.

更新:

如果偏移很长,最好的解决方案是什么?

uint32 position;
long offset;  // it could be negative
uint32 position = position+offset;
Run Code Online (Sandbox Code Playgroud)

c unsigned signed overflow underflow

9
推荐指数
1
解决办法
1300
查看次数

如何从已签名的.Net程序集中读取数字签名信息?

我正在编写一个汇编信息应用程序,用于我们的软件构建过程,并尝试从已签名的.Net程序集中读取数字签名信息.

我想在我的C#代码中执行Windows资源管理器可以通过右键单击已签名的程序集并选择"数字签名"选项卡然后单击"详细信息"按钮来执行的操作.例如

Windows 7资源管理器可以通过右键单击文件属性来完成

数字签名细节

有没有人知道如何在C#中以编程方式执行此操作?我目前正在使用Mono Cecil库从程序集中获取其余信息.非常感谢您的帮助.

c# signed authenticode digital-signature x509certificate

9
推荐指数
1
解决办法
6526
查看次数

如何将带符号的32位int转换为无符号的32位int?

这就是我现在所拥有的.有没有更好的方法来做到这一点?

import struct
def int32_to_uint32(i):
    return struct.unpack_from("I", struct.pack("i", i))[0]
Run Code Online (Sandbox Code Playgroud)

python unsigned signed integer type-conversion

9
推荐指数
2
解决办法
3万
查看次数

从char*转换为signed char*

我看到一段有效的C代码,我试图编译为C++,我得到了一个我无法理解的错误.

char* t;
signed char* v = t;
Run Code Online (Sandbox Code Playgroud)

错误:无效转换char*signed char*

从我学到的,char并且signed char在语义上相同,但编译器仍然认为它们是不同的.

我知道错误是由这两种类型之间的差异造成的,我的问题是:为什么存在这种差异?

据我所知char,无论是作为一个signed char还是作为一个实现unsigned char它都应该与一个或另一个相同.


我咨询了这个问题,并没有回答我想知道的问题.

c++ signed char

9
推荐指数
1
解决办法
1721
查看次数

生成签名apk时,幻数不匹配

我正在尝试生成签名的apk但我收到以下错误.

我搜索过它,但没有找到任何可以解决这个问题的东西.

解决方案我试过了

  • 无效缓存/重启

  • 删除.gradle文件夹

  • 卸载android studio

我最近更新了最新版本3.0.1的工作室,它工作正常,但问题从最近几天开始.

请有人帮我这个!

Magic number did not match
    java.lang.IllegalStateException: Magic number did not match
        at com.intellij.credentialStore.kdbx.KdbxSerializerKt.readKdbxHeader(KdbxSerializer.kt:146)
        at com.intellij.credentialStore.kdbx.KdbxSerializer.createUnencryptedInputStream(KdbxSerializer.kt:61)
        at com.intellij.credentialStore.kdbx.KdbxStreamFormat.load(kdbx.kt:55)
        at com.intellij.credentialStore.kdbx.KdbxKt.loadKdbx(kdbx.kt:36)
        at com.intellij.credentialStore.KeePassCredentialStore.<init>(KeePassCredentialStore.kt:82)
        at com.intellij.credentialStore.KeePassCredentialStore.<init>(KeePassCredentialStore.kt:44)
        at com.intellij.ide.passwordSafe.impl.PasswordSafeImplKt.computeProvider(PasswordSafeImpl.kt:38)
        at com.intellij.ide.passwordSafe.impl.PasswordSafeImpl.<init>(PasswordSafeImpl.kt:46)
        at com.intellij.ide.passwordSafe.impl.PasswordSafeImpl.<init>(PasswordSafeImpl.kt)
        at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
        at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
        at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
        at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
        at org.picocontainer.defaults.InstantiatingComponentAdapter.newInstance(InstantiatingComponentAdapter.java:193)
        at com.intellij.util.pico.CachingConstructorInjectionComponentAdapter.doGetComponentInstance(CachingConstructorInjectionComponentAdapter.java:103)
        at com.intellij.util.pico.CachingConstructorInjectionComponentAdapter.instantiateGuarded(CachingConstructorInjectionComponentAdapter.java:80)
        at com.intellij.util.pico.CachingConstructorInjectionComponentAdapter.getComponentInstance(CachingConstructorInjectionComponentAdapter.java:63)
        at com.intellij.openapi.components.impl.ServiceManagerImpl$MyComponentAdapter.getComponentInstance(ServiceManagerImpl.java:228)
        at com.intellij.util.pico.DefaultPicoContainer.getLocalInstance(DefaultPicoContainer.java:239)
        at com.intellij.util.pico.DefaultPicoContainer.getComponentInstance(DefaultPicoContainer.java:206)
        at com.intellij.openapi.components.ServiceManager.doGetService(ServiceManager.java:48)
        at com.intellij.openapi.components.ServiceManager.getService(ServiceManager.java:38)
        at com.intellij.ide.passwordSafe.PasswordSafe.getInstance(PasswordSafe.java:28)
        at org.jetbrains.android.exportSignedPackage.KeystoreStep.<init>(KeystoreStep.java:71)
        at org.jetbrains.android.exportSignedPackage.ExportSignedPackageWizard.<init>(ExportSignedPackageWizard.java:110)
        at org.jetbrains.android.actions.GenerateSignedApkAction.actionPerformed(GenerateSignedApkAction.java:74)
        at com.intellij.openapi.actionSystem.ex.ActionUtil$1.run(ActionUtil.java:215)
        at com.intellij.openapi.actionSystem.ex.ActionUtil.performActionDumbAware(ActionUtil.java:232)
        at com.intellij.openapi.actionSystem.impl.ActionMenuItem$ActionTransmitter.lambda$actionPerformed$0(ActionMenuItem.java:309)
        at …
Run Code Online (Sandbox Code Playgroud)

android signed apk android-studio

9
推荐指数
1
解决办法
837
查看次数