zoukankan      html  css  js  c++  java
  • Runtime vs. Compile time

    Runtime vs. Compile time

    回答1

     
     

    The difference between compile time and run time is an example of what pointy-headed theorists call the phase distinction. It is one of the hardest concepts to learn, especially for people without much background in programming languages. To approach this problem, I find it helpful to ask

    1. What invariants does the program satisfy?
    2. What can go wrong in this phase?
    3. If the phase succeeds, what are the postconditions (what do we know)?
    4. What are the inputs and outputs, if any?

    Compile time

    1. The program need not satisfy any invariants. In fact, it needn't be a well-formed program at all. You could feed this HTML to the compiler and watch it barf...
    2. What can go wrong at compile time:
      • Syntax errors
      • Typechecking errors
      • (Rarely) compiler crashes
    3. If the compiler succeeds, what do we know?
      • The program was well formed---a meaningful program in whatever language.
      • It's possible to start running the program. (The program might fail immediately, but at least we can try.)
    4. What are the inputs and outputs?
      • Input was the program being compiled, plus any header files, interfaces, libraries, or other voodoo that it needed to import in order to get compiled.
      • Output is hopefully assembly code or relocatable object code or even an executable program. Or if something goes wrong, output is a bunch of error messages.

    Run time

    1. We know nothing about the program's invariants---they are whatever the programmer put in. Run-time invariants are rarely enforced by the compiler alone; it needs help from the programmer.
    2. What can go wrong are run-time errors:

      • Division by zero
      • Dereferencing a null pointer
      • Running out of memory

      Also there can be errors that are detected by the program itself:

      • Trying to open a file that isn't there
      • Trying find a web page and discovering that an alleged URL is not well formed
    3. If run-time succeeds, the program finishes (or keeps going) without crashing.
    4. Inputs and outputs are entirely up to the programmer. Files, windows on the screen, network packets, jobs sent to the printer, you name it. If the program launches missiles, that's an output, and it happens only at run time :-)

    回答2

    I think of it in terms of errors, and when they can be caught.

    Compile time:

    string my_value = Console.ReadLine();
    int i = my_value;
    

    A string value can't be assigned a variable of type int, so the compiler knows for sure at compile time that this code has a problem

    Run time:

    string my_value = Console.ReadLine();
    int i = int.Parse(my_value);
    

    Here the outcome depends on what string was returned by ReadLine(). Some values can be parsed to an int, others can't. This can only be determined at run time

  • 相关阅读:
    网格视图
    使用box-shadow 属性用来可以创建纸质样式卡片:
    css 按钮动画
    vue父组件向自定义组件传递参数过程
    vue中如何使用 v-model 实现双向数据绑定?
    vue中是如何实现响应键盘回车事件
    vue中如何实现 样式绑定?
    webpack require.Context功能作用
    Personal tips for success
    my blog frist
  • 原文地址:https://www.cnblogs.com/chucklu/p/13139630.html
Copyright © 2011-2022 走看看