len函数双冒号占几位python

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了len函数双冒号占几位python相关的知识,希望对你有一定的参考价值。

参考技术A 在 Python 中,不同的字符所占的字节数不同,数字、英文字母、小数点、下划线以及空格,各占一个字节,而一个汉字可能占 2~4 个字节,具体占多少个,取决于采用的编码方式。
要想知道一个字符串有多少个字符(获得字符串长度),或者一个字符串占用多少个字节,可以使用 len 函数。
len 函数的基本语法格式为:
len(string)
其中 string 用于指定要进行长度统计的字符串

js 双冒号(::)运算符

文章目录

一、参考

  1. 阮一峰 双冒号运算符

二、call(),applay(),bind() 函数

2.1 API 说明

let arg = [arg1, arg2, arg3......]

1. call(target,...arg)  
第一个参数,是this指向
第二个参数,`及其以后的参数都是数组里面的元素,就是说要全部列举出来`2. applay(target, arg)
第一个参数,是this指向
第二个参数,`是一个参数数组`

3. bind(target)
第一个参数,是this指向

2.2 API 差异说明

  1. bind是返回对应函数
  2. 便于稍后调用,apply、call是立即调用;

三、 箭头函数 VS. 双冒号运算符

1.箭头函数可以绑定this,因为箭头函数无自己的this,始终指向箭头函数外层的this,但是,箭头函数并不适用于所有场合

2.双冒号运算符,可以替代call(),applay(),bind()

3.1 ( :: ) 双冒号

冒号左边是对象,右边是函数,该运算符会自动将左边的对象,作为上下文环境(即this对象),绑定到右边的函数上面。

foo::bar;
// 等同于
bar.bind(foo);

foo::bar(...arguments);
// 等同于
bar.apply(foo, arguments);

双冒号左边为空,右边是一个对象的方法,则等于将该方法绑定在该对象上面。

var method = obj::obj.foo;
//==
var method = ::obj.foo;
let log  = ::console.log;
//==
let log =console.log.bind(console)

3.2 react 中的使用案例

render() 
  let  props, state  = this;
  return (
    <div style=position: 'relative'>
       props.layout.eastWidth !== 0 && props.browser.width >= 1440 && props.layout.switchState &&
      <div className="east-switch-cls">
          <Switch defaultChecked=true size="small" onChange=::this.switchChange />
          <span>i18n('ibody.rightInfo','右侧信息')</span>
          /* <span className="east-switch-cls-line"> </span> */
      </div> 
      <div className="content-layout-east" style=
          width: props.layout.eastWidth,
          height: state.height,
          display: !state.isShow ? 'none' : 'block',
          overflowY: props.overflowY
      > props.layout.eastWidth ?  props.children : "" </div>
    </div>
  )

onChange=::this.switchChange 等价于 onChange=this::this.switchChangeonChange=this.switchChange.bind(this)

以上是关于len函数双冒号占几位python的主要内容,如果未能解决你的问题,请参考以下文章

c语言中,函数定义中的冒号是啥意思?

c语言的双冒号是啥意思::

Kotlin :: 双冒号 函数引用

js 双冒号(::)运算符

js 双冒号(::)运算符

js 双冒号(::)运算符