标签: unsafe

如何正确摆脱 UNSAFE_componentWillMount

对于我从另一位开发人员继承的 React 应用程序,其中一个页面包括:

import { getLogUser } from "../../appRedux/actions/authAction";

constructor(props) {
    super(props);
    this.state = {
        user: null,
    };
}

UNSAFE_componentWillMount() {
    let user = getLogUser();
    this.setState({ user });
    // user state is used inside the render part
}

componentDidMount = () => {
    let { username } = getLogUser();
    // ... username is used inside some logic within the componentDidMount method.
Run Code Online (Sandbox Code Playgroud)

我想摆脱这个UNSAFE_componentWillMount方法。

  1. UNSAFE_componentWillMount如果我user: getLogUser()在内部使用,我可以移除该部件吗 constructor
  2. 如果这确实是正确的方法,那么我不应该将let { username } = getLogUser();inside 替换为 …

unsafe reactjs

4
推荐指数
1
解决办法
1653
查看次数

如果 A == B,则将 Rc<A> 向下转换为 Rc<B>

我想知道以下代码是否有效(也许有一种内置/安全的方法可以向下转换Rc<dyn SomeTrait>Rc<SomeType>?我找不到任何),最重要的是,它安全吗?

use std::any::*;
use std::rc::*;

// NOTE: apparently adding Any here is REQUIRED
//       otherwise it doesn't work at all,
//       I have no idea why
trait SomeTrait: Any {}
struct SomeType;

impl SomeTrait for SomeType {}

fn rc_downcaster<A: 'static, B: ?Sized + 'static>(b: Rc<B>) -> Option<Rc<A>> {
    if Any::type_id(&*b) == TypeId::of::<A>() {
        Some(unsafe {
            let p = Rc::into_raw(b);
            Rc::from_raw(p as *const A)
        })
    } else {
        None
    }
}


fn main() {
    let x: …
Run Code Online (Sandbox Code Playgroud)

unsafe rust

4
推荐指数
1
解决办法
79
查看次数

sql server 2005:使用@@ identity是否安全?

我有一个程序,我在员工table.nad中使用@@ identity来插入记录?当这个过程将通过在同一时间超过一个用户调用,可以有它返回在同一time.because有通过系统的身份没有锁插入一些其他员工的身份可能性?

- 代码 - 将empid列
插入到员工(名称)值('sahil'); return @@ identity

参考sql server 2005:使用@@ identity是否安全? 锁定身份问题

sql-server identity unsafe

3
推荐指数
1
解决办法
694
查看次数

传递公共变量的地址

当我尝试传递这样的公共变量的地址时:

ML.Register("Radius", &lBeacons[i].Radius, 0.0f, 200.0f, 10.0f);
Run Code Online (Sandbox Code Playgroud)

我收到此错误:

error CS0212: You can only take the address of an unfixed expression inside of a fixed statement initializer
Run Code Online (Sandbox Code Playgroud)

Register函数如下所示:

public unsafe void Register(string desc, float* val, float minimum, float maximum, float stepsize)
Run Code Online (Sandbox Code Playgroud)

信标是一个列表.它拥有一个具有公共半径的类.

c# pointers unsafe ref

3
推荐指数
1
解决办法
6630
查看次数

.NET不安全的字符串操作

我使用下一个不安全的代码进行字符串修改:

public static unsafe void RemoveLastOne(ref string Str1)
    {
        if (Str1.Length < 1)
            return;

        int len = Str1.Length - 1;
        fixed (char* pCh1 = Str1)
        {
            int* pChi1 = (int*)pCh1;
            pCh1[len] = '\0';
            pChi1[-1] = len;
        }
    }
Run Code Online (Sandbox Code Playgroud)

但是一段时间后我的C#programm崩溃了,例外:

FatalExecutionEngineError:"运行时遇到致命错误.错误地址为0x6e9a80d9,在线程0xcfc上.错误代码为0xc0000005.此错误可能是CLR中的错误或用户的不安全或不可验证部分此错误的常见来源包括COM-interop或PInvoke的用户封送错误,这可能会破坏堆栈."

如果我将函数"RemoveLastOne"更改为"Str1 = Str1.Remove(Str1.Length - 1);" 程序工作正常.

为什么发生异常?我如何正确地在C#中实现不安全的更改字符串?

.net c# string unsafe

3
推荐指数
1
解决办法
3383
查看次数

c#unsafe - 在方法或代码块之前?

在方法之前或代码块之前使用-unsafe- keyword之间有什么区别吗?

如果我在方法之前使用-unsafe-关键字,而我只有几行不安全代码和数百个安全代码,那会不会错?

c# unsafe

3
推荐指数
1
解决办法
2908
查看次数

Java不安全操作

编译一小段java代码时,我得到了一个不安全操作的编译说明.我基本上只是希望有一个如何改变我的数据结构以保证其安全的概念.

这个概念:我需要根据它们的长度将输入的字符串组织成桶,这可能是任意的(尽管少于80个字符).

代码:

Map<Integer, List> buckets = new HashMap<Integer, List>();
            if(!buckets.containsKey(length))
            {
                buckets.put(length,new Vector<wordValues>());
            }
            //Now add the temp to the bucket
            buckets.get(length).add(new wordValues(temp));
Run Code Online (Sandbox Code Playgroud)

然后我将字符串添加到与其大小相对应的列表中.

什么是更好的方法来做到这一点?

java maps unsafe vector

3
推荐指数
1
解决办法
422
查看次数

在不使用不安全的情况下将int分配给struct对象

我在c#中有一个struct定义,如下所示

public struct test                                                                                  
{
    byte   SetCommonPOP;
    byte   SetCommonSVP;
    byte   SetCommonUHDP;
    byte   SetCommonMHDP;
};
Run Code Online (Sandbox Code Playgroud)

如何在不使用不安全的情况下将int y分配给此结构的对象x?

c# unsafe structure

3
推荐指数
1
解决办法
138
查看次数

嵌套的固定语句

按照C#参考fixed声明:

fixed语句阻止垃圾收集器重定位可移动变量.
...
执行语句中的代码后,将取消固定任何固定变量并进行垃圾回收.因此,不要指向固定语句之外的那些变量.

我的问题是,如果我们fixed对同一个变量有嵌套语句,那么我在这个页面上找不到的内容是什么?

var data = new byte[100];
unsafe
{
    fixed(byte* pData = data)
    {
        //pData points to the "pinned" variable
        fixed(byte* pData2 = data)
        {
            //pData points to the "pinned" variable
            //pData2 points to the "pinned" variable
        }
        //Does pData still point to the "pinned" variable?
    }
}  
Run Code Online (Sandbox Code Playgroud)

上面的代码当然只是为了说明.实际使用可以是递归函数.

c# garbage-collection unsafe

3
推荐指数
1
解决办法
267
查看次数

将*mut T强制解除引用到*mut ManuallyDrop <T>是不确定的行为?

根据文档,ManuallyDrop<T>是一个零成本的包装.这是否意味着我可以取消引用从原始指针转换ManuallyDrop<T>到的原始指针T

unsafe undefined-behavior rust raw-pointer

3
推荐指数
1
解决办法
96
查看次数