search
HomeBackend DevelopmentGolangHow does type reflection for implicit types work?
How does type reflection for implicit types work?Feb 06, 2024 am 09:30 AM
implicit type conversion

How does type reflection for implicit types work?

Question content

As far as I know, go is statically typed and usually does not perform implicit type conversion. Therefore, constants without an explicit type declaration are subject to requirements on first use.

So, in the code snippet below, I want n to be float64, because that's what math.sin expects. But when printing out the reflected type, I see int.

package main

import (
    "fmt"
    "math"
    "reflect"
)

func main() {
    const n = 5000 // No explict type

        // fmt.Println(reflect.TypeOf(n)) // this would print "int"

    fmt.Println(math.Sin(n)) // math.Sin expects a float64

    fmt.Println(reflect.TypeOf(n)) // print "int"
}

What exactly happened here? n Is there actually an implicit int type? Or reflection won't show actual type cases like this? I don't think math.sin is typecasting its argument because the compiler will throw an error if I specify an explicit type.


Correct answer


[The type of untyped constant] depends on the requirements for first use.

This is where you got it wrong. A type is selected independently for each use.

math.Sin requires a float64 argument, so the compiler must select float64 here.

reflect.TypeOf takes an interface{} parameter, so the compiler is free to choose any numeric type (since they all implement the empty interface). The default integer type is selected here: int.

The above is the detailed content of How does type reflection for implicit types work?. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:stackoverflow. If there is any infringement, please contact admin@php.cn delete
mysql存在哪些隐式类型转换mysql存在哪些隐式类型转换Nov 14, 2023 am 11:28 AM

mysql存在的隐式类型转换有字符串到数值类型、日期和时间类型、浮点数和整数类型、NULL值等。详细介绍:1、字符串到数值类型的隐式类型转换,当一个字符串和一个数值类型的值进行比较或计算时,MySQL会将字符串转换为数值类型;2、日期和时间类型的隐式类型转换,在MySQL中,日期和时间类型也可以与其他数据类型进行隐式类型转换;3、浮点数和整数类型的隐式类型转换等等。

C语言中的隐式类型转换和显式类型转换是什么?C语言中的隐式类型转换和显式类型转换是什么?Sep 08, 2023 pm 10:13 PM

将一种数据类型转换为另一种数据类型称为类型转换。隐式类型转换显式类型转换隐式类型转换当操作数具有不同数据类型时,编译器提供隐式类型转换。它是由编译器通过将较小的数据类型转换为较大的数据类型自动完成的。inti,x;floatf;doubled;longintl;这里,上面的表达式最终计算结果为“double”值。示例以下是隐式类型转换的示例-intx;for(x=97;x<=122;x++){&nbsp;&nbsp;printf("%c",x);/*Im

C++ 函数默认参数与可变参数的优缺点比较C++ 函数默认参数与可变参数的优缺点比较Apr 21, 2024 am 10:21 AM

C++函数中默认参数的优点包括简化调用、增强可读性、避免错误。缺点是限制灵活性、命名限制。可变参数的优点包括无限灵活性、动态绑定。缺点包括复杂性更高、隐式类型转换、调试困难。

golang函数的类型转换golang函数的类型转换Apr 19, 2024 pm 05:33 PM

函数中类型转换允许将一种类型的数据转换为另一种类型,从而扩展函数的功能。使用语法:type_name:=variable.(type)。例如,可使用strconv.Atoi函数将字符串转换为数字,并处理转换失败的错误。

Go语言中的静态类型详解Go语言中的静态类型详解Apr 07, 2024 pm 05:42 PM

Go语言采用静态类型,在编译时进行类型检查,避免运行时类型错误。基本类型包括整型、浮点型、布尔型、字符串和字节切片。复合类型包括数组、切片、结构体、接口和通道。Go语言支持类型推断和多种类型转换操作符。类型别名便于代码的可读性和可维护性。静态类型带来安全性、性能和可维护性优势。

mysql索引失效的几种情况mysql索引失效的几种情况Feb 21, 2024 pm 04:23 PM

常见情况:1、使用函数或运算;2、隐式类型转换;3、使用不等于(!=或<>);4、使用LIKE操作符,并以通配符开头;5、OR条件;6、NULL值;7、索引选择性低;8、复合索引的最左前缀原则;9、优化器决策;10、FORCE INDEX和IGNORE INDEX。

隐式类型转换:类型的不同变体及其在编程中的应用探究隐式类型转换:类型的不同变体及其在编程中的应用探究Jan 13, 2024 pm 02:54 PM

探索隐式类型转换的不同类型及其在编程中的作用引言:在编程中,我们经常需要处理不同类型的数据。有时候,我们需要将一种数据类型转换为另一种类型以便进行特定操作或满足特定要求。在这个过程中,隐式类型转换是一个非常重要的概念。隐式类型转换指的是在不需要显式指定转换类型的情况下,编程语言会自动进行数据类型转换的过程。本文将探索隐式类型转换的不同类型及其在编程中的作用,

c语言中int和float有什么区别c语言中int和float有什么区别Apr 29, 2024 pm 10:12 PM

C 语言中 int 和 float 变量的差别在于:类型不同:int 用于存储整数,而 float 用于存储小数。存储大小:int 通常占用 4 个字节,而 float 也占用 4 个字节。精度:int 表示精确的整数,而 float 的精度有限。范围:int 的范围通常为 -2^31 到 2^31-1,而 float 的范围更宽。运算:int 和 float 可以进行算术运算和比较,但结果可能受到精度限制的影响。类型转换:int 和 float 之间可以进行显式或隐式类型转换。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.