go str 源码

  • 2022-07-15
  • 浏览 (745)

golang str 代码

文件路径:/src/cmd/vendor/golang.org/x/sys/windows/str.go

// Copyright 2009 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

//go:build windows
// +build windows

package windows

func itoa(val int) string { // do it here rather than with fmt to avoid dependency
	if val < 0 {
		return "-" + itoa(-val)
	}
	var buf [32]byte // big enough for int64
	i := len(buf) - 1
	for val >= 10 {
		buf[i] = byte(val%10 + '0')
		i--
		val /= 10
	}
	buf[i] = byte(val + '0')
	return string(buf[i:])
}

相关信息

go 源码目录

相关文章

go aliases 源码

go dll_windows 源码

go env_windows 源码

go eventlog 源码

go exec_windows 源码

go memory_windows 源码

go mksyscall 源码

go race 源码

go race0 源码

go security_windows 源码

0  赞