- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
为什么 TypeScript 接受值作为数据类型?
下面的这些场景是接受和 Not Acceptable 声明。
export class MyComponent{
error: 'test' = 'test'; // accept
error: 'test' = 'test1'; // not accept
error: Boolean = true || false; // accept
error: true | false = true; // not accept
error: true = true; // accept
error: true = false; // not accept
error: Boolean; //accept
error: true; // accept
error: 1 = 1; //accept
error: 1 = 2; // not accept
}
- Why does TypeScript allow a value as a data type?
- How does JavaScript handle these at compile time?
- How does it differ from
readonly
andconstant
?
readonly error= 'test';
与
error: 'test' = 'test';
最佳答案
首先,一些非正式的背景和信息将有助于我们讨论您提出的问题:
通常,类型表示一组 0 个或多个值。可以将这些值视为该类型的成员或居民。
就它们可以采用的这种多重值而言,类型往往属于 3 组中的 1 组。
第 1 组: 例如:string
类型。 string
类型包含所有字符串值。由于字符串实际上可以是任意长的,因此本质上有无数个属于 string
类型的值。作为此类型成员的值集是所有可能字符串的集合。
第 2 组: 例如:undefined
类型。 undefined
类型只有一个值,即 undefined
值。因此,这种类型通常被称为单例类型,因为它的成员集只有 1 个值。
第 3 组: 例如:never
类型。 never
类型没有成员。根据定义,不可能有类型为 never
的值。当您在专业人士中阅读它时,这似乎有点令人困惑,但一个小代码示例可以解释它。
考虑:
function getValue(): never {
throw Error();
}
getValue
的返回类型为
never
,因为它从不返回值,它总是抛出。因此如果我们写
const value = getValue();
value
也是
never
类型。
Why typescript allow value as a data type?
document.getElementsByTagName
。此函数始终采用
string
类型的值,并始终返回包含
NodeList
的
HTMLElement
。但是,根据传递的实际字符串值,它将返回该列表中完全不同类型的内容。这些元素之间唯一的共同点是它们都来自
HTMLElement
。
declare function getElementsByTagName(tagname: string): NodeList<HTMLElement>;
getElementsByTagName('input')
实际上只返回页面上的输入元素,正是我们想要的,但是根据我们上面的定义,虽然我们当然得到了正确的值(TypeScript 不影响 JavaScript 运行时行为),但它们会产生错误类型。具体来说,它们将是
HTMLElement
类型,即
HTMLInputElement
的父类(super class)型,它没有我们想要访问的
value
属性。
HTMLInputElement
但这很丑陋,容易出错(我们必须记住所有类型名称以及它们如何映射到它们的标签名称),冗长,有点迟钝,我们知道得更好,并且我们静态地知道得更好。
tagname
的值(即
getElementsByTagName
的参数)与其实际返回的元素类型之间的关系进行建模。
undefined
一样,它只有一个值,即文字字符串。一旦我们有了这种类型,我们就可以重载
getElementsByTagName
的声明,使其更加精确和有用
declare function getElementsByTagName(tagname: 'input'): NodeList<HTMLInputElement>;
declare function getElementsByTagName(tagname: string): NodeList<HTMLElement>;
transpiler
,根据您指定的值,会发生非常不同的事情,此外,如果您指定无效值,它将尝试加载一个不存在的模块,并且无法加载其他任何东西。
transpiler
的有效值为:
"plugin-traceur"
、
"plugin-babel"
、
"plugin-typescript"
和 0x25181214131331。我们不仅要让 TypeScript 建议这 4 种可能性,还要让它检查我们是否只使用了这些可能性中的一种。
transpiler: string | boolean;
false
不是有效值!
transpiler: 'plugin-traceur' | 'plugin-babel' | 'plugin-typescript' | false;
true
或尝试传递
'plugin-tsc'
,则会立即得到错误。
declare const compass: {
direction: 'N' | 'E' | 'S' | 'W'
};
const direction = compass.direction;
// direction is 'N' | 'E' | 'S' | 'W'
if (direction === 'N') {
console.log('north');
} // direction is 'E' | 'S' | 'W'
else if (direction === 'S') {
console.log('south');
} // direction is 'E' | 'W'
else if (direction === 'N') { // ERROR!
console.log('Northerly');
}
true
本质上是死代码,它的主体永远不会被执行。文字类型赋予我们将可能的罗盘
if
声明为“N”、“S”、“E”或“W”之一的特殊性使编译器能够立即将第三个 if 语句标记为无法访问的、有效无意义的代码,表明我们程序中的一个错误,一个逻辑错误(毕竟我们只是人类)。
And how Javascript handle those on compile time?
And How it will differ from readonly and constant?
direction
和
const
修饰符交互。这种交互有点复杂,可以浅显地解决,就像我在这里做的那样,或者很容易就包含一个 Q/A 本身。
readonly
和
const
对可能的值有影响,因此变量或属性实际上可以在任何时候保存的可能类型,因此使文字类型,特定值的类型,更容易传播,推理关于,也许最重要的是为我们推断。
const x = 'a';
readonly
的类型为
x
,因为它无法重新分配。
let x = 'a';
'a'
的类型为
x
,因为它是可变的。
let x: 'a' = 'a';
string
类型的值。
'a'
示例中可以观察到,还有其他机制在起作用,该示例表明该语言还有另一层,即控制流分析层,它跟踪可能的值类型,因为它们被条件、赋值、真实检查缩小了范围,以及其他结构,如解构赋值。
export class MyComponent {
// OK because we have said `error` is of type 'test',
// the singleton string type whose values must be members of the set {'test'}
error: 'test' = 'test';
// NOT OK because we have said `error` is of type 'test',
// the singleton string type whose values must be members of the set {'test'}
// 'test1' is not a member of the set {'test'}
error: 'test' = 'test1';
// OK but a word of Warning:
// this is valid because of a subtle aspect of structural subtyping,
// another topic but it is an error in your program as the type `Boolean` with a
// capital "B" is the wrong type to use
// you definitely want to use 'boolean' with a lowercase "b" instead.
error: Boolean = true || false;
// This one is OK, it must be a typo in your question because we have said that
// `error` is of type true | false the type whose values must
// be members of the set {true, false} and true satisfies that and so is accepted
error: true | false = true;
// OK for the same reason as the first property, error: 'test' = 'test';
error: true = true;
// NOT OK because we have said that error is of type `true` the type whose values
// must be members of the set {true}
// false is not in that set and therefore this is an error.
error: true = false;
// OK this is just a type declaration, no value is provided, but
// as noted above, this is the WRONG type to use.
// please use boolean with a lowercase "b".
error: Boolean;
// As above, this is just a type, no value to conflict with
error: true;
// OK because we have said `error` is of type 1 (yes the number 1),
// the singleton number type whose values must be members of the set {1}
// 1 is a member of {1} so we are good to go
error: 1 = 1;
// NOT OK because we have said `error` is of type 1 (yes the number 1),
// the singleton number type whose values must be members of the set {1}
// 2 is NOT a member of {1} so this is an error.
error: 1 = 2;
}
关于angular - 为什么 TypeScript 接受值作为数据类型?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44560995/
我的问题:非常具体。我正在尝试想出解析以下文本的最简单方法: ^^domain=domain_value^^version=version_value^^account_type=account_ty
好吧,这就是我的困境: 我正在为 Reddit 子版 block 开发常见问题解答机器人。我在 bool 逻辑方面遇到了麻烦,需要一双更有经验的眼睛(这是我在 Python 中的第一次冒险)。现在,该
它首先遍历所有 y 值,然后遍历所有 x 值。我需要 X 和 y 同时改变。 For x = 3 To lr + 1 For y = 2 To lr anyl.Cells(x, 1)
假设我有一个包含 2 列的 Excel 表格:单元格 A1 到 A10 中的日期和 B1 到 B10 中的值。 我想对五月日期的所有值求和。我有3种可能性: {=SUM((MONTH(A1:A10)=
如何转换 Z-score来自 Z-distribution (standard normal distribution, Gaussian distribution)到 p-value ?我还没有找到
我正在重写一些 Javascript 代码以在 Excel VBA 中工作。由于在这个网站上搜索,我已经设法翻译了几乎所有的 Javascript 代码!但是,有些代码我无法准确理解它在做什么。这是一
我遇到过包含日期格式的时间戳日期的情况。然后我想构建一个图表,显示“点击”项目的数量“每天”, //array declaration $array1 = array("Date" => 0); $a
我是scala的新手! 我的问题是,是否有包含成员的案例类 myItem:Option[String] 当我构造类时,我需要将字符串内容包装在: Option("some string") 要么 So
我正在用 PHP 创建一个登录系统。我需要用户使用他或她的用户名或电子邮件或电话号码登录然后使用密码。因为我知道在 Java 中我们会像 email==user^ username == user 这
我在 C++ 项目上使用 sqlite,但是当我在具有文本值的列上使用 WHERE 时出现问题 我创建了一个 sqlite 数据库: CREATE TABLE User( id INTEGER
当构造函数是显式时,它不用于隐式转换。在给定的代码片段中,构造函数被标记为 explicit。那为什么在 foo obj1(10.25); 情况下它可以工作,而在 foo obj2=10.25; 情况
我知道这是一个主观问题,所以如果需要关闭它,我深表歉意,但我觉得它经常出现,让我想知道是否普遍偏爱一种形式而不是另一种形式。 显然,最好的答案是“重构代码,这样你就不需要测试是否存在错误”,但有时没有
这两个 jQuery 选择器有什么区别? 以下是来自 w3schools.com 的定义: [attribute~=value] 选择器选择带有特定属性,其值包含特定字符串。 [attribute*=
为什么我们需要CSS [attribute|=value] Selector根本当 CSS3 [attribute*=value] Selector基本上完成相同的事情,浏览器兼容性几乎相似?是否存在
我正在解决 regx 问题。我已经有一个像这样的 regx [0-9]*([.][0-9]{2})。这是 amont 格式验证。现在,通过此验证,我想包括不应提供 0 金额。比如 10 是有效的,但
我正在研究计算机科学 A 考试的样题,但无法弄清楚为什么以下问题的正确答案是正确的。 考虑以下方法。 public static void mystery(List nums) { for (
好的,我正在编写一个 Perl 程序,它有一个我收集的值的哈希值(完全在一个完全独立的程序中)并提供给这个 Perl 脚本。这个散列是 (string,string) 的散列。 我想通过 3 种方式对
我有一个表数据如下,来自不同的表。仅当第三列具有值“债务”并且第一列(日期)具有最大值时,我才想从第四列中获取最大值。最终值基于 MAX(DATE) 而不是 MAX(PRICE)。所以用简单的语言来说
我有一个奇怪的情况,只有错误状态保存到数据库中。当“状态”应该为 true 时,我的查询仍然执行 false。 我有具有此功能的 Controller public function change_a
我有一个交易表(针对所需列进行了简化): id client_id value 1 1 200 2 2 150 3 1
我是一名优秀的程序员,十分优秀!