240 发简信
IP属地:湖北
  • 关于Canvas的疑惑

    先看测试代码 代码很简单,就是div下包含了一个canvas,没有其他多余设置。canvas在没有设置属性或者样式表中没有设置width和hei...

  • C++偶遇系列:explicit

    explicit explicit修饰符可以用于转化构造函数conversion constructor(C++98) 或者转化函数conver...

  • c++11系列:enumeration

    枚举类型 从C++11开始,存在了两种枚举类型Unscoped enumeration和Scoped enumeration Unscoped ...

  • Reverse Vowels of a String

    Difficulty: Easy Write a function that takes a string as input and rever...

  • Number of 1 Bits

    Difficulty: Easy Write a function that takes an unsigned integer and ret...

  • Regex的元字符总结

    匹配单个字符的元字符 | 元字符 | 匹配对象--- | --- | ---. | 点号 | 匹配单个任意字符[ ... ] | 字符组 | 匹...