240 发简信
IP属地:新疆
  • 120
    【译】Android技术栈,1#架构

    原文链接:A useful stack on android #1, architecture原文作者: Saúl Molinero译文出自: 小鄧子的简书译者: ...

  • 使用泛型与函数式思想高效解析 JSON

    更多优秀译文请关注我们的微信公众号:learnSwift 原文连接:Efficient JSON in Swift with Functional Concepts and ...

  • 1.4converting a C Program to C++

    C Program: C++ Improvements -NB some of these are adopted in modern C-Different librari...

  • const

    size在程序编译时就知道其值 buffersize在某一个地方有,但不一定是const,但是在file b中是const的,不能修改buffersize const int...

  • difference of char *s && char s[]

    代码分析:1.两个"hello World"均为常量,保存在代码区,而代码区是只读的2.程序执行char s2[] = "hello World";时,是将代码区的"hell...