gpt4 book ai didi

typescript - 是否可以在 TypeScript 中定义 string.Empty?

转载 作者:搜寻专家 更新时间:2023-10-30 20:34:10 25 4
gpt4 key购买 nike

我正在研究 TypeScript 和 C# 中的代码约定,我们已经想出了一条规则,即在 C# 中使用 string.Empty 而不是 ""

C# 示例:

doAction("");
doAction(string.Empty); // we chose to use this as a convention.

typescript :

// only way to do it that I know of.
doAction("");

现在我的问题是有没有办法在 TypeScript 中保持此规则的一致性,还是这种语言特定?

你们知道如何在 TypeScript 中定义空字符串吗?

最佳答案

如果你真的想这样做,你可以编写代码来做到这一点:

interface StringConstructor { 
Empty: string;
}

String.Empty = "";

function test(x: string) {

}

test(String.Empty);

如您所见,传递 String.Empty 或仅传递 "" 没有区别。

关于typescript - 是否可以在 TypeScript 中定义 string.Empty?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42674511/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com