• vscode java配置


    launch.json

    {
    // Use IntelliSense to learn about possible attributes.
    // Hover to view descriptions of existing attributes.
    // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
    "version": "0.2.0",
    "configurations": [

    {
    "type": "java",
    "name": "Debug (Launch) - Current File",
    "request": "launch",
    "mainClass": "com.haizhi.hora.HoraApplication",
    "args": "--spring.config.location=/home/zhaohh/work_env/hora/hora/src/main/resources/application-test.yml"
    }
    ]
    }
     
    settings.json
     
    {
    "java.completion.importOrder": [
    "#",
    "java",
    "javax",
    "",
    "com.haizhi"
    ],
    "editor.codeActionsOnSave": {
    "source.organizeImports": true
    },
    "files.exclude": {
    "**/.classpath": true,
    "**/.project": true,
    "**/.settings": true,
    "**/.factorypath": true
    },
    "java.configuration.maven.userSettings": "/home/zhaohh/work_env/hora/settings.xml",
    "java.checkstyle.configuration": "${workspaceFolder}/checkstyle.xml"
    }
  • 相关阅读:
    指针和数组的关系
    深入学习数组
    const关键字与指针
    野指针是什么
    指针带来的一些符号的理解
    指针的本质
    内存管理之堆
    内存管理之栈
    元类
    断点调式和面向对象进阶
  • 原文地址:https://www.cnblogs.com/zhaohuanhuan/p/13493285.html
Copyright © 2020-2023  润新知