Go 并发程序死锁排查与避免:深入剖析与实践

go 并发程序死锁排查与避免:深入剖析与实践

本文旨在帮助开发者理解和解决 Go 并发程序中常见的死锁问题。通过分析一个包含三个 Goroutine 相互通信的示例程序,我们将深入探讨死锁产生的原因,并提供有效的调试和修复策略,包括使用 runtime.Gosched() 和缓冲 Channel 来避免死锁,同时强调并发程序设计的复杂性和潜在的非确定性行为。

理解 Go 中的死锁

在 Go 语言中,死锁通常发生在多个 Goroutine 试图通过 Channel 进行通信时,由于某种原因,它们都在等待对方释放资源或发送/接收数据,从而导致所有 Goroutine 都被阻塞,程序无法继续执行。Go 运行时会检测到这种状态,并抛出 “fatal error: all goroutines are asleep – deadlock!” 错误。

死锁的常见原因包括:

循环等待: 多个 Goroutine 互相等待对方释放资源。Channel 容量不足: 使用无缓冲 Channel 时,发送方必须等待接收方准备好才能发送数据,如果接收方被阻塞,发送方也会被阻塞,从而可能导致死锁。错误的 Channel 操作: 例如,向已关闭的 Channel 发送数据,或者从已关闭且没有数据的 Channel 接收数据。

示例代码分析与死锁排查

下面是一个可能导致死锁的示例代码,它包含三个 Goroutine,它们通过 Channel 互相发送整数:

package mainimport (    "fmt"    "math/rand"    "runtime")func Routine1(command12 chan int, response12 chan int, command13 chan int, response13 chan int) {    z12 := 200    z13 := 200    m12 := false    m13 := false    y := 0    for i := 0; i < 20; i++ {        y = rand.Intn(100)        if y == 0 {            fmt.Println(z12, "    z12 STATE SAVED")            fmt.Println(z13, "    z13 STATE SAVED")            y = 0            command12 <- y            command13 <- y            for m12 != true || m13 != true {                select {                case cmd1 := <-response12:                    {                        z12 = cmd1                        if z12 != 0 {                            fmt.Println(z12, "    z12  Channel Saving.... ")                            y = rand.Intn(100)                            command12 <- y                        }                        if z12 == 0 {                            m12 = true                            fmt.Println(" z12  Channel Saving Stopped ")                        }                    }                case cmd2 := <-response13:                    {                        z13 = cmd2                        if z13 != 0 {                            fmt.Println(z13, "    z13  Channel Saving.... ")                            y = rand.Intn(100)                            command13 <- y                        }                        if z13 == 0 {                            m13 = true                            fmt.Println("    z13  Channel Saving Stopped ")                        }                    }                }            }            m12 = false            m13 = false        }        if y != 0 {            if y%2 == 0 {                command12 <- y            }            if y%2 != 0 {                command13 <- y            }            select {            case cmd1 := <-response12:                {                    z12 = cmd1                    fmt.Println(z12, "    z12")                }            case cmd2 := <-response13:                {                    z13 = cmd2                    fmt.Println(z13, "   z13")                }            }        }    }    close(command12)    close(command13)}func Routine2(command12 chan int, response12 chan int, command23 chan int, response23 chan int) {    z21 := 200    z23 := 200    m21 := false    m23 := false    for i := 0; i < 20; i++ {        select {        case x, open := <-command12:            {                if !open {                    return                }                if x != 0 && m23 != true {                    z21 = x                    fmt.Println(z21, "   z21")                }                if x != 0 && m23 == true {                    z21 = x                    fmt.Println(z21, "   z21 Channel Saving ")                }                if x == 0 {                    m21 = true                    if m21 == true && m23 == true {                        fmt.Println(" z21 and z23 Channel Saving Stopped ")                        m23 = false                        m21 = false                    }                    if m21 == true && m23 != true {                        z21 = x                        fmt.Println(z21, "   z21  Channel Saved ")                    }                }            }        case x, open := <-response23:            {                if !open {                    return                }                if x != 0 && m21 != true {                    z23 = x                    fmt.Println(z23, "   z21")                }                if x != 0 && m21 == true {                    z23 = x                    fmt.Println(z23, "   z23 Channel Saving ")                }                if x == 0 {                    m23 = true                    if m21 == true && m23 == true {                        fmt.Println(" z23 Channel Saving Stopped ")                        m23 = false                        m21 = false                    }                    if m23 == true && m21 != true {                        z23 = x                        fmt.Println(z23, "   z23  Channel Saved ")                    }                }            }        }        if m23 == false && m21 == false {            y := rand.Intn(100)            if y%2 == 0 {                if y == 0 {                    y = 10                    response12 <- y                }            }            if y%2 != 0 {                if y == 0 {                    y = 10                    response23 <- y                }            }        }        if m23 == true && m21 != true {            y := rand.Intn(100)            response12 <- y        }        if m23 != true && m21 == true {            y := rand.Intn(100)            command23 <- y        }    }    close(response12)    close(command23)}func Routine3(command13 chan int, response13 chan int, command23 chan int, response23 chan int) {    z31 := 200    z32 := 200    m31 := false    m32 := false    for i := 0; i < 20; i++ {        select {        case x, open := <-command13:            {                if !open {                    return                }                if x != 0 && m32 != true {                    z31 = x                    fmt.Println(z31, "   z21")                }                if x != 0 && m32 == true {                    z31 = x                    fmt.Println(z31, "   z31 Channel Saving ")                }                if x == 0 {                    m31 = true                    if m31 == true && m32 == true {                        fmt.Println(" z21 Channel Saving Stopped ")                        m31 = false                        m32 = false                    }                    if m31 == true && m32 != true {                        z31 = x                        fmt.Println(z31, "   z31  Channel Saved ")                    }                }            }        case x, open := <-command23:            {                if !open {                    return                }                if x != 0 && m31 != true {                    z32 = x                    fmt.Println(z32, "   z32")                }                if x != 0 && m31 == true {                    z32 = x                    fmt.Println(z32, "   z32 Channel Saving ")                }                if x == 0 {                    m32 = true                    if m31 == true && m32 == true {                        fmt.Println(" z32 Channel Saving Stopped ")                        m31 = false                        m32 = false                    }                    if m32 == true && m31 != true {                        z32 = x                        fmt.Println(z32, "   z32  Channel Saved ")                    }                }            }        }        if m31 == false && m32 == false {            y := rand.Intn(100)            if y%2 == 0 {                response13 <- y            }            if y%2 != 0 {                response23 <- y            }        }        if m31 == true && m32 != true {            response13 <- y        }        if m31 != true && m32 == true {            response23 <- y        }    }    close(response13)    close(response23)}func main() {    command12 := make(chan int)    response12 := make(chan int)    command13 := make(chan int)    response13 := make(chan int)    command23 := make(chan int)    response23 := make(chan int)    go Routine1(command12, response12, command13, response13)    go Routine2(command12, response12, command23, response23)    Routine3(command13, response13, command23, response23)}

这段代码创建了三个 Goroutine,它们通过六个 Channel 进行通信。Routine1 是发起者,它可以发送 0 值来请求其他 Goroutine 保存状态。每个 Goroutine 都有一个内部状态,并通过 Channel 交换数据。

死锁分析:

这段代码的复杂性使得静态分析变得困难,但我们可以推断出潜在的死锁点:

在 Routine1 中,当 y == 0 时,它会向 command12 和 command13 发送 0,并进入一个循环,等待从 response12 和 response13 接收 0。如果 Routine2 和 Routine3 由于某种原因无法发送 0,Routine1 将永远被阻塞。在 Routine2 和 Routine3 中,它们都在 select 语句中等待从两个 Channel 接收数据。如果它们都在等待对方发送数据,就会形成循环等待。

解决死锁的策略

使用 runtime.Gosched():

runtime.Gosched() 函数可以让当前 Goroutine 放弃 CPU 的使用权,让其他 Goroutine 有机会运行。在 select 语句中添加 default 分支并调用 runtime.Gosched() 可以避免 Goroutine 一直占用 CPU,从而降低死锁的风险。

select {case cmd1 := <-response12:    // ...case cmd2 := <-response13:    // ...default:    runtime.Gosched()}

使用缓冲 Channel:

将无缓冲 Channel 替换为缓冲 Channel 可以缓解死锁问题。缓冲 Channel 允许发送方在 Channel 未满时发送数据,而无需等待接收方准备好。这可以避免发送方因为等待接收方而被阻塞。

command12 := make(chan int, 10) // 创建一个容量为 10 的缓冲 Channel

注意: 缓冲 Channel 只是缓解死锁,并不能完全避免死锁。如果缓冲 Channel 满了,发送方仍然会被阻塞。

代码重构:

最根本的解决方案是重新设计并发程序,避免复杂的 Channel 交互和循环等待。可以考虑使用更高级的并发模式,例如 sync.WaitGroup、context 等,或者使用更简单的通信方式,例如共享内存和锁。

修改后的代码示例

下面是修改后的代码,使用了 runtime.Gosched() 和缓冲 Channel:

package mainimport (    "fmt"    "math/rand"    "runtime")const bufferSize = 4 // 缓冲大小func Routine1(command12 chan int, response12 chan int, command13 chan int, response13 chan int) {    z12 := 200    z13 := 200    m12 := false    m13 := false    y := 0    for i := 0; i < 20; i++ {        y = rand.Intn(100)        if y == 0 {            fmt.Println(z12, "    z12 STATE SAVED")            fmt.Println(z13, "    z13 STATE SAVED")            y = 0            command12 <- y            command13 <- y            for m12 != true || m13 != true {                select {                case cmd1 := <-response12:                    {                        z12 = cmd1                        if z12 != 0 {                            fmt.Println(z12, "    z12  Channel Saving.... ")                            y = rand.Intn(100)                            command12 <- y                        }                        if z12 == 0 {                            m12 = true                            fmt.Println(" z12  Channel Saving Stopped ")                        }                    }                case cmd2 := <-response13:                    {                        z13 = cmd2                        if z13 != 0 {                            fmt.Println(z13, "    z13  Channel Saving.... ")                            y = rand.Intn(100)                            command13 <- y                        }                        if z13 == 0 {                            m13 = true                            fmt.Println("    z13  Channel Saving Stopped ")                        }                    }                default:                    runtime.Gosched()                }            }            m12 = false            m13 = false        }        if y != 0 {            if y%2 == 0 {                command12 <- y            }            if y%2 != 0 {                command13 <- y            }            select {            case cmd1 := <-response12:                {                    z12 = cmd1                    fmt.Println(z12, "    z12")                }            case cmd2 := <-response13:                {                    z13 = cmd2                    fmt.Println(z13, "   z13")                }            default:                runtime.Gosched()            }        }    }    close(command12)    close(command13)}func Routine2(command12 chan int, response12 chan int, command23 chan int, response23 chan int) {    z21 := 200    z23 := 200    m21 := false    m23 := false    for i := 0; i < 20; i++ {        select {        case x, open := <-command12:            {                if !open {                    return                }                if x != 0 && m23 != true {                    z21 = x                    fmt.Println(z21, "   z21")                }                if x != 0 && m23 == true {                    z21 = x                    fmt.Println(z21, "   z21 Channel Saving ")                }                if x == 0 {                    m21 = true                    if m21 == true && m23 == true {                        fmt.Println(" z21 and z23 Channel Saving Stopped ")                        m23 = false                        m21 = false                    }                    if m21 == true && m23 != true {                        z21 = x                        fmt.Println(z21, "   z21  Channel Saved ")                    }                }            }        case x, open := <-response23:            {                if !open {                    return                }                if x != 0 && m21 != true {                    z23 = x                    fmt.Println(z23, "   z21")                }                if x != 0 && m21 == true {                    z23 = x                    fmt.Println(z23, "   z23 Channel Saving ")                }                if x == 0 {                    m23 = true                    if m21 == true && m23 == true {                        fmt.Println(" z23 Channel Saving Stopped ")                        m23 = false                        m21 = false                    }                    if m23 == true && m21 != true {                        z23 = x                        fmt.Println(z23, "   z23  Channel Saved ")                    }                }            }        default:            runtime.Gosched()        }        if m23 == false && m21 == false {            y := rand.Intn(100)            if y%2 == 0 {                if y == 0 {                    y = 10                    response12 <- y                }            }            if y%2 != 0 {                if y == 0 {                    y = 10                    response23 <- y                }            }        }        if m23 == true && m21 != true {            y := rand.Intn(100)            response12 <- y        }        if m23 != true && m21 == true {            y := rand.Intn(100)            command23 <- y        }    }    close(response12)    close(command23)}func Routine3(command13 chan int, response13 chan int, command23 chan int, response23 chan int) {    z31 := 200    z32 := 200    m31 := false    m32 := false    for i := 0; i < 20; i++ {        select {        case x, open := <-command13:            {                if !open {                    return                }                if x != 0 && m32 != true {                    z31 = x                    fmt.Println(z31, "   z21")                }                if x != 0 && m32 == true {                    z31 = x                    fmt.Println(z31, "   z31 Channel Saving ")                }                if x == 0 {                    m31 = true                    if m31 == true && m32 == true {                        fmt.Println(" z21 Channel Saving Stopped ")                        m31 = false                        m32 = false                    }                    if m31 == true && m32 != true {                        z31 = x                        fmt.Println(z31, "   z31  Channel Saved ")                    }                }            }        case x, open := <-command23:            {                if !open {                    return                }                if x != 0 && m31 != true {                    z32 = x                    fmt.Println(z32, "   z32")                }                if x != 0 && m31 == true {                    z32 = x                    fmt.Println(z32, "   z32 Channel Saving ")                }                if x == 0 {                    m32 = true                    if m31 == true && m32 == true {                        fmt.Println(" z32 Channel Saving Stopped ")                        m31 = false                        m32 = false                    }                    if m32 == true && m31 != true {                        z32 = x                        fmt.Println(z32, "   z32  Channel Saved ")                    }                }            }        default:            runtime.Gosched()        }        if m31 == false && m32 == false {            y := rand.Intn(100)            if y%2 == 0 {                response13 <- y            }            if y%2 != 0 {                response23 <- y            }        }        if m31 == true && m32 != true {            response13 <- y        }        if m31 != true && m32 == true {            response23 <- y        }    }    close(response13)    close(response23)}func main() {    command12 := make(chan int, bufferSize)    response12 := make(chan int, bufferSize)    command13 := make(chan int, bufferSize)    response13 := make(chan int, bufferSize)    command23 := make(chan int, bufferSize)    response23 := make(chan int, bufferSize)    go Routine1(command12, response12, command13, response13)    go Routine2(command12, response12, command23, response23)    Routine3(command13, response13, command23, response23)    // 为了防止 main 函数过早退出,可以等待一段时间    // 或者使用 sync.WaitGroup 等待所有 Goroutine 完成    runtime.Gosched()    runtime.Gosched()    runtime.Gosched()    runtime.Gosched()    runtime.Gosched()}

注意事项:

修改后的代码仍然可能存在非确定性行为,因为 Goroutine 的执行顺序是不确定的。缓冲 Channel 的大小需要根据实际情况进行调整。过小的缓冲可能无法完全避免死锁,过大的缓冲可能会浪费内存。runtime.Gosched() 的使用应该谨慎,过度使用可能会降低程序的性能。在实际开发中,应该尽量避免编写复杂的并发程序,并使用更高级的并发模式来简化代码。

总结

Go 并发程序中的死锁是一个常见的问题,但通过理解死锁的原因和掌握调试和修复策略,我们可以有效地避免死锁。在设计并发程序时,应该尽量避免复杂的 Channel 交互和循环等待,并使用更高级的并发模式来简化代码。同时,需要注意并发程序的非确定性行为,并进行充分的测试,以确保程序的正确性和稳定性。

以上就是Go 并发程序死锁排查与避免:深入剖析与实践的详细内容,更多请关注创想鸟其它相关文章!

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件至 chuangxiangniao@163.com 举报,一经查实,本站将立刻删除。
发布者:程序猿,转转请注明出处:https://www.chuangxiangniao.com/p/1398424.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2025年12月15日 15:25:45
下一篇 2025年12月15日 15:25:58

相关推荐

  • Uniapp 中如何不拉伸不裁剪地展示图片?

    灵活展示图片:如何不拉伸不裁剪 在界面设计中,常常需要以原尺寸展示用户上传的图片。本文将介绍一种在 uniapp 框架中实现该功能的简单方法。 对于不同尺寸的图片,可以采用以下处理方式: 极端宽高比:撑满屏幕宽度或高度,再等比缩放居中。非极端宽高比:居中显示,若能撑满则撑满。 然而,如果需要不拉伸不…

    2025年12月24日
    400
  • 如何让小说网站控制台显示乱码,同时网页内容正常显示?

    如何在不影响用户界面的情况下实现控制台乱码? 当在小说网站上下载小说时,大家可能会遇到一个问题:网站上的文本在网页内正常显示,但是在控制台中却是乱码。如何实现此类操作,从而在不影响用户界面(UI)的情况下保持控制台乱码呢? 答案在于使用自定义字体。网站可以通过在服务器端配置自定义字体,并通过在客户端…

    2025年12月24日
    800
  • 如何在地图上轻松创建气泡信息框?

    地图上气泡信息框的巧妙生成 地图上气泡信息框是一种常用的交互功能,它简便易用,能够为用户提供额外信息。本文将探讨如何借助地图库的功能轻松创建这一功能。 利用地图库的原生功能 大多数地图库,如高德地图,都提供了现成的信息窗体和右键菜单功能。这些功能可以通过以下途径实现: 高德地图 JS API 参考文…

    2025年12月24日
    400
  • 如何使用 scroll-behavior 属性实现元素scrollLeft变化时的平滑动画?

    如何实现元素scrollleft变化时的平滑动画效果? 在许多网页应用中,滚动容器的水平滚动条(scrollleft)需要频繁使用。为了让滚动动作更加自然,你希望给scrollleft的变化添加动画效果。 解决方案:scroll-behavior 属性 要实现scrollleft变化时的平滑动画效果…

    2025年12月24日
    000
  • 如何为滚动元素添加平滑过渡,使滚动条滑动时更自然流畅?

    给滚动元素平滑过渡 如何在滚动条属性(scrollleft)发生改变时为元素添加平滑的过渡效果? 解决方案:scroll-behavior 属性 为滚动容器设置 scroll-behavior 属性可以实现平滑滚动。 html 代码: click the button to slide right!…

    2025年12月24日
    500
  • 如何选择元素个数不固定的指定类名子元素?

    灵活选择元素个数不固定的指定类名子元素 在网页布局中,有时需要选择特定类名的子元素,但这些元素的数量并不固定。例如,下面这段 html 代码中,activebar 和 item 元素的数量均不固定: *n *n 如果需要选择第一个 item元素,可以使用 css 选择器 :nth-child()。该…

    2025年12月24日
    200
  • 使用 SVG 如何实现自定义宽度、间距和半径的虚线边框?

    使用 svg 实现自定义虚线边框 如何实现一个具有自定义宽度、间距和半径的虚线边框是一个常见的前端开发问题。传统的解决方案通常涉及使用 border-image 引入切片图片,但是这种方法存在引入外部资源、性能低下的缺点。 为了避免上述问题,可以使用 svg(可缩放矢量图形)来创建纯代码实现。一种方…

    2025年12月24日
    100
  • 如何让“元素跟随文本高度,而不是撑高父容器?

    如何让 元素跟随文本高度,而不是撑高父容器 在页面布局中,经常遇到父容器高度被子元素撑开的问题。在图例所示的案例中,父容器被较高的图片撑开,而文本的高度没有被考虑。本问答将提供纯css解决方案,让图片跟随文本高度,确保父容器的高度不会被图片影响。 解决方法 为了解决这个问题,需要将图片从文档流中脱离…

    2025年12月24日
    000
  • 为什么 CSS mask 属性未请求指定图片?

    解决 css mask 属性未请求图片的问题 在使用 css mask 属性时,指定了图片地址,但网络面板显示未请求获取该图片,这可能是由于浏览器兼容性问题造成的。 问题 如下代码所示: 立即学习“前端免费学习笔记(深入)”; icon [data-icon=”cloud”] { –icon-cl…

    2025年12月24日
    200
  • 如何利用 CSS 选中激活标签并影响相邻元素的样式?

    如何利用 css 选中激活标签并影响相邻元素? 为了实现激活标签影响相邻元素的样式需求,可以通过 :has 选择器来实现。以下是如何具体操作: 对于激活标签相邻后的元素,可以在 css 中使用以下代码进行设置: li:has(+li.active) { border-radius: 0 0 10px…

    2025年12月24日
    100
  • 如何模拟Windows 10 设置界面中的鼠标悬浮放大效果?

    win10设置界面的鼠标移动显示周边的样式(探照灯效果)的实现方式 在windows设置界面的鼠标悬浮效果中,光标周围会显示一个放大区域。在前端开发中,可以通过多种方式实现类似的效果。 使用css 使用css的transform和box-shadow属性。通过将transform: scale(1.…

    2025年12月24日
    200
  • 为什么我的 Safari 自定义样式表在百度页面上失效了?

    为什么在 Safari 中自定义样式表未能正常工作? 在 Safari 的偏好设置中设置自定义样式表后,您对其进行测试却发现效果不同。在您自己的网页中,样式有效,而在百度页面中却失效。 造成这种情况的原因是,第一个访问的项目使用了文件协议,可以访问本地目录中的图片文件。而第二个访问的百度使用了 ht…

    2025年12月24日
    000
  • 如何用前端实现 Windows 10 设置界面的鼠标移动探照灯效果?

    如何在前端实现 Windows 10 设置界面中的鼠标移动探照灯效果 想要在前端开发中实现 Windows 10 设置界面中类似的鼠标移动探照灯效果,可以通过以下途径: CSS 解决方案 DEMO 1: Windows 10 网格悬停效果:https://codepen.io/tr4553r7/pe…

    2025年12月24日
    000
  • 使用CSS mask属性指定图片URL时,为什么浏览器无法加载图片?

    css mask属性未能加载图片的解决方法 使用css mask属性指定图片url时,如示例中所示: mask: url(“https://api.iconify.design/mdi:apple-icloud.svg”) center / contain no-repeat; 但是,在网络面板中却…

    2025年12月24日
    000
  • 如何用CSS Paint API为网页元素添加时尚的斑马线边框?

    为元素添加时尚的斑马线边框 在网页设计中,有时我们需要添加时尚的边框来提升元素的视觉效果。其中,斑马线边框是一种既醒目又别致的设计元素。 实现斜向斑马线边框 要实现斜向斑马线间隔圆环,我们可以使用css paint api。该api提供了强大的功能,可以让我们在元素上绘制复杂的图形。 立即学习“前端…

    2025年12月24日
    000
  • 图片如何不撑高父容器?

    如何让图片不撑高父容器? 当父容器包含不同高度的子元素时,父容器的高度通常会被最高元素撑开。如果你希望父容器的高度由文本内容撑开,避免图片对其产生影响,可以通过以下 css 解决方法: 绝对定位元素: .child-image { position: absolute; top: 0; left: …

    2025年12月24日
    000
  • CSS 帮助

    我正在尝试将文本附加到棕色框的左侧。我不能。我不知道代码有什么问题。请帮助我。 css .hero { position: relative; bottom: 80px; display: flex; justify-content: left; align-items: start; color:…

    2025年12月24日 好文分享
    200
  • 前端代码辅助工具:如何选择最可靠的AI工具?

    前端代码辅助工具:可靠性探讨 对于前端工程师来说,在HTML、CSS和JavaScript开发中借助AI工具是司空见惯的事情。然而,并非所有工具都能提供同等的可靠性。 个性化需求 关于哪个AI工具最可靠,这个问题没有一刀切的答案。每个人的使用习惯和项目需求各不相同。以下是一些影响选择的重要因素: 立…

    2025年12月24日
    000
  • 如何用 CSS Paint API 实现倾斜的斑马线间隔圆环?

    实现斑马线边框样式:探究 css paint api 本文将探究如何使用 css paint api 实现倾斜的斑马线间隔圆环。 问题: 给定一个有多个圆圈组成的斑马线图案,如何使用 css 实现倾斜的斑马线间隔圆环? 答案: 立即学习“前端免费学习笔记(深入)”; 使用 css paint api…

    2025年12月24日
    000
  • 如何使用CSS Paint API实现倾斜斑马线间隔圆环边框?

    css实现斑马线边框样式 想定制一个带有倾斜斑马线间隔圆环的边框?现在使用css paint api,定制任何样式都轻而易举。 css paint api 这是一个新的css特性,允许开发人员创建自定义形状和图案,其中包括斑马线样式。 立即学习“前端免费学习笔记(深入)”; 实现倾斜斑马线间隔圆环 …

    2025年12月24日
    100

发表回复

登录后才能评论
关注微信