char * p =“ string”和有什么不一样?和char p [] =“ string”?

时间:2019-12-29 12:25:59

标签: c

/ * char p =“字符串”;和char p [] =“ string” /      我认为两者都以相同的方式工作,或者有什么不同?      我想知道有什么区别?

renderRow({ item, index }) {
    return (
      <View style={[styles.GridViewContainer, 
                    index % 2 === 0 ? {
                      borderLeftWidth: 1, borderLeftColor: 'black',
                      borderRightWidth: 1, borderRightColor: 'black',} 
                      : 
                      {borderRightWidth: 1, borderRightColor: 'black'}

                      ,{borderBottomWidth: 1, borderBottomColor: 'black'}
                      ,index <= 1 && {borderTopWidth: 1, borderBottomColor: 'black'}
                    ]}
      >

      ... render item code ...
        </View>
    )
  }

0 个答案:

没有答案