作用:头文件搜索路径配置。
{
{ | |
// 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": [ | |
{ | |
"name": "debug swoole", | |
"type": "cppdbg", | |
"request": "launch", |
C++版本是-std=c++11
#include <iostream>
class Codinghuang
{
public:
Codinghuang()
{
package main | |
import "fmt" | |
func main() { | |
// Directed Acyclic Graph | |
vertices := map[int][]int{ | |
1: []int{4}, | |
2: []int{3}, | |
3: []int{4, 5}, |
package main | |
import ( | |
"fmt" | |
"reflect" | |
) | |
var typeRegistry = make(map[string]reflect.Type) | |
func registerType(typedNil interface{}) { |
package main | |
import ( | |
"flag" | |
"fmt" | |
"log" | |
"github.com/shogo82148/androidbinary/apk" | |
) |
package RSAUtil | |
import ( | |
"crypto" | |
"crypto/rand" | |
"crypto/rsa" | |
"crypto/sha256" | |
"crypto/x509" | |
"encoding/pem" | |
"errors" |