如果不需要类型转换,什么类型规则是编程语言?

What typing discipline is a programming language if there is no need for type conversion?

如果我能做到例如:

int x = 10;
string y = x;

y 的值将是字符串形式的“10”。

那是哪种打字规则?

我想我们称之为 Dynamic typing