#常量指针

IDEA编译时报“常量字符串过长”问题

关于IDEA编译时报“常量字符串过长”的问题: 解决办法:File>>Settings>>Build,Execution,Deployment>>Compiler>>JavaCompiler  将Usecompiler改为Eclipse即可;...

C++ try catch 捕获空指针异常,数组越界异常

#include<exception>#include<iostream>usingnamespacestd;/**********************************//project->Properties->C/C++->CodeGeneration-->...
代码星球 ·2021-02-14

触摸java常量池

此文转载于:https://www.cnblogs.com/iyangyuan/p/4631696.html#3836299    java常量池是一个经久不衰的话题,也是面试官的最爱,题目花样百出,小菜早就对常量池有所耳闻,这次好好总结一下。 理论 &nbs...
代码星球 ·2021-02-13

[一]class 文件浅析 .class文件格式详解 字段方法属性常量池字段 class文件属性表 数据类型 数据结构

原文地址:[一]class文件浅析.class文件格式详解字段方法属性常量池字段class文件属性表数据类型数据结构前言概述 本文旨在讲解class文件的整体结构信息,阅读本文后应该可以完整的了解class文件的格式以及各个部分的逻辑组成含义 class文件包含了java虚拟机指令集和 符...

C++智能指针简单剖析

最近在补看《C++PrimerPlus》第六版,这的确是本好书,其中关于智能指针的章节解析的非常清晰,一解我以前的多处困惑。C++面试过程中,很多面试官都喜欢问智能指针相关的问题,比如你知道哪些智能指针?shared_ptr的设计原理是什么?如果让你自己设计一个智能指针,你如何完成?等等……。而且在看开源的C++项目时...

恼人的函数指针(一)

原文链接:http://www.cnblogs.com/AnnieKim/archive/2011/11/20/2255813.html这篇是为了加深记忆所写。发现。非常多知识若不经过重复的琢磨和动手实践。是非常难记得住的。1) 函数指针的初始化。函数例如以下:int CompareString(c...
代码星球 ·2021-02-13

python实现常量const

新建const.py:#-*-coding:UTF-8-*-#Filename:const.py#定义一个常量类实现常量的功能##该类定义了一个方法__setattr()__,和一个异常ConstError,ConstError类继承#自类TypeError.通过调用类自带的字典__dict__,判断定义的常量是否包含...
代码星球 ·2021-02-13

符号常量的使用

1#include<iostream>23/*runthisprogramusingtheconsolepauseroraddyourowngetch,system("pause")orinputloop*/4#definePRICE305usingnamespacestd;6intmain(intargc...
代码星球 ·2021-02-12

有关对象指针的使用方法

1#include<iostream>23/*runthisprogramusingtheconsolepauseroraddyourowngetch,system("pause")orinputloop*/4usingnamespacestd;5classTime6{7public:8Time(int,i...

用指向结构体变量的指针作实参

1#include<iostream>2#include<string.h>3/*runthisprogramusingtheconsolepauseroraddyourowngetch,system("pause")orinputloop*/4usingnamespacestd;5struct...

指向结构体变量的指针的应用

1#include<iostream>2#include<string.h>3/*runthisprogramusingtheconsolepauseroraddyourowngetch,system("pause")orinputloop*/4usingnamespacestd;56intma...

使用指针变量作形参,实现两个变量的值互换

1#include<iostream>23/*runthisprogramusingtheconsolepauseroraddyourowngetch,system("pause")orinputloop*/4usingnamespacestd;5intmain(intargc,char**argv){6v...

指向字符型数据的指针变量

1#include<iostream>23/*runthisprogramusingtheconsolepauseroraddyourowngetch,system("pause")orinputloop*/4usingnamespacestd;5intmain(intargc,char**argv){6c...

函数与指针求大者

1#include<iostream>23/*runthisprogramusingtheconsolepauseroraddyourowngetch,system("pause")orinputloop*/4usingnamespacestd;5intmain(intargc,char**argv){6i...
代码星球 ·2021-02-12

LeetCode刷题总结-双指针、位运算和分治法篇

本文总结LeetCode上有关双指针、位运算和分治法的算法题,推荐刷题总数14道。具体考点分析如下图:  1.字符串和数组问题题号:424.替换后的最长重复字符,难度中等题号:828.独特字符串,难度困难题号:923.三数之和的多种可能,难度中等 2.实际场景应用问题题号:826.安排工作...
首页上一页12345...下一页尾页