码迷,mamicode.com
首页 > 其他好文 > 详细

c assert函数

时间:2020-03-08 11:18:39      阅读:71      评论:0      收藏:0      [点我收藏+]

标签:highlight   return   执行   image   div   nis   info   assert   pre   

条件为false,调用abort函数退出进程,在线程中执行也会导致进程退出

//
// Created by gxf on 2020/3/8.
//
#include "linklist.h"
#include <assert.h>
#include <stdio.h>
#include <stdlib.h>
#include <pthread.h>
#include <unistd.h>

void printHello();

int main() {
    int a = 1;
    int b = 0;
    pthread_t thread;

    pthread_create(&thread, NULL, printHello, NULL);

    pthread_join(thread, NULL);

    printf("before abort\n");
    abort();
    assert(b < a);
    printf("hello assert\n");


    return 0;
}

void printHello() {
    int k = 1000;
    int i = 0;
    while (1) {
        if (i == 10) {
            assert(k < i);
        }
        i ++;
        printf("hello\n");
        sleep(1);
    }
}

  技术图片

 

c assert函数

标签:highlight   return   执行   image   div   nis   info   assert   pre   

原文地址:https://www.cnblogs.com/luckygxf/p/12441409.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!