typeof()函数代码示例
时间: 2024-03-28 11:35:17 浏览: 63
typeof()函数是一种用于获取变量或表达式的数据类型的函数。在不同的编程语言中,typeof()函数的具体用法可能会有所不同。以下是一些常见编程语言中typeof()函数的代码示例:
1. JavaScript:
```javascript
var x = 5;
console.log(typeof(x)); // 输出: "number"
var y = "Hello";
console.log(typeof(y)); // 输出: "string"
var z = true;
console.log(typeof(z)); // 输出: "boolean"
```
2. Python:
```python
x = 5
print(type(x)) # 输出: <class 'int'>
y = "Hello"
print(type(y)) # 输出: <class 'str'>
z = True
print(type(z)) # 输出: <class 'bool'>
```
3. C#:
```csharp
int x = 5;
Console.WriteLine(typeof(x)); // 输出: System.Int32
string y = "Hello";
Console.WriteLine(typeof(y)); // 输出: System.String
bool z = true;
Console.WriteLine(typeof(z)); // 输出: System.Boolean
```
4. Java:
```java
int x = 5;
System.out.println(x.getClass().getName()); // 输出: java.lang.Integer
String y = "Hello";
System.out.println(y.getClass().getName()); // 输出: java.lang.String
boolean z = true;
System.out.println(z.getClass().getName()); // 输出: java.lang.Boolean
```
阅读全文