首页 \ 问答 \ 进程如何跟踪其局部变量(How does a process keep track of its local variables)

进程如何跟踪其局部变量(How does a process keep track of its local variables)

据我所知,当一个进程分配局部变量时,它通过将它们作为堆栈推送到内存中来实现,但仍然通过使用堆栈指针的偏移来引用它们来引用它们(从这个线程是什么)使用堆栈为局部变量背后的想法? )。

但是,它如何知道哪些变量有什么偏移? 我是否以正确的方式思考这个问题?


As far as I know, when a process allocates local variables, it does so by pushing them onto memory as a stack, but still accesses them as random memory by using an offset from the stack pointer to reference them (from this thread What is the idea behind using a stack for local variables?).

However, how does it know which variables have what offset? Am I thinking about this in the right way?


原文:https://stackoverflow.com/questions/48794317
更新时间:2021-11-03 15:11

最满意答案

在第1412行的CSS中,它将.site overflow更改为hidden,然后隐藏菜单。 这是媒体呼吁最小宽度:600:

@media screen and (min-width: 600px) {

...

.site {
    margin: 0 auto;
    max-width: 1024px;
    max-width: 73.14285714rem;
    overflow: hidden;
}

只需删除溢出:隐藏;

您可能希望通过更改此行来仔细检查没有其他任何内容,并且可能会为更宽的屏幕重新应用它。


In the CSS on line 1412 it changes .site overflow to hidden, which then hides the menu. It's under the media call for min-width: 600:

@media screen and (min-width: 600px) {

...

.site {
    margin: 0 auto;
    max-width: 1024px;
    max-width: 73.14285714rem;
    overflow: hidden;
}

Just remove overflow:hidden;

You may want to double check that nothing else breaks by changing this line, and maybe reapply it for the wider screens.

相关问答

更多
  • w830c 参数设置[2022-08-22]

    第一步: 菜单>手机设定>连接>数据通信>数据账户>添加账户>GPRS数据>名称:Cmwap>APN:cmwap | 其它不用填写>保存>退回待机状态 第二步: 菜单>手机设定>连接>互联网设定>互联网模式>添加模式(名字:Wap冲浪 | 连接方式:Cmwap)>保存>光标移至刚刚添加的模式,即"Wap冲浪"上>更多>设置>连接方式:Cmwap | 互联网模式:HTTP | 代理:是 | 代理地址:010.000.000.172 | 端口:80 | 其它不填>保存>>选择>退回待机状态 注:经过此步,如网络 ...
  • 使用setInterval进行重复操作,使用Math.random()获取随机数。 例如 : var functions = [dSqu, dCir, dTri]; setInterval(function(){ functions[Math.floor(Math.random()*functions.length)](); }, 200); 这会将每个200毫秒的内容称为随机抽取的三个函数之一( dSqu , dCir或dTri )。 为了使其工作,您需要使功能可见。 例如,您可以将代码更改为 < ...
  • 您可以使用e.target属性来比较点击的内容。 与此类似: if(e.target == pageContainer[0]) 您现在可以在点击.pageContainer时应用所需的逻辑。 $(document).ready(function() { var pageContainer = $('.pageContainer'); var button = $('.button'); var ocn = $('.ocn'); var test = $('.test'); v ...
  • 你的代码确实有效! 问题是这个代码是在你的图像之后应用的( 想想上面画了 ) .site-header .genesis-nav-menu { background: #9D162E; } 所以只需删除上面课程的背景颜色就可以了! Your code actually works! The problem is that this code is applied after your image (think painted above) .site-header .genesis-nav-men ...
  • 怎么样 nav ul { width: 100%; display: table; } nav ul li { float:none; display: table-cell; } 这个解决方案可以让浏览器按照它认为合适的方式编写内容 - 更宽的内容将被赋予更窄的内容。 How about nav ul { width: 100%; display: table; } nav ul li { float:none; display: ta ...
  • 在第1412行的CSS中,它将.site overflow更改为hidden,然后隐藏菜单。 这是媒体呼吁最小宽度:600: @media screen and (min-width: 600px) { ... .site { margin: 0 auto; max-width: 1024px; max-width: 73.14285714rem; overflow: hidden; } 只需删除溢出:隐藏; 您可能希望通过更改此行来仔细检查没有其他任何内容,并且可能会 ...
  • 一种解决方案是给page position:absolute并改变left定位而不是改变它。 .page { transition:.3s ease-in-out; position:absolute; left:0px; top:0px; } .page.navigating { left:250px; } .page.navigating .top-bar .top-bar-section { left:0px; } 在这里演示 编辑 要在小屏幕 ...
  • 像这样添加或删除它,使用简单的if/else $('#navIt').click(function () { if($(window).width() < 600){ $(this).addClass('drop'); } else{ $(this).removeClass('drop'); } }); Add or remove it like this, with simple if/else $('#navIt').click(function () { i ...
  • 你应该提供一个plunker,但现在你可以尝试下面的CSS canvas { display: block; position: relative; } 将位置改为'相对'。 可能它会起作用。 并在HTML关闭第一行的canvas标签
  • 所以,我发现我的问题是通过iphone5上的滚动错误创建的。 我已在其他移动设备上测试过,它运行良好。 我已经修改了代码,感谢另一位用户的帮助。 我保持答案Jquery具体,所以我没有修改任何CSS。 var screensize = document.documentElement.clientWidth; $(document).ready(function(){ var $window = $(window), $nav = $('.link'), $button = $('hea ...

相关文章

更多

最新问答

更多
  • 您如何使用git diff文件,并将其应用于同一存储库的副本的本地分支?(How do you take a git diff file, and apply it to a local branch that is a copy of the same repository?)
  • 将长浮点值剪切为2个小数点并复制到字符数组(Cut Long Float Value to 2 decimal points and copy to Character Array)
  • OctoberCMS侧边栏不呈现(OctoberCMS Sidebar not rendering)
  • 页面加载后对象是否有资格进行垃圾回收?(Are objects eligible for garbage collection after the page loads?)
  • codeigniter中的语言不能按预期工作(language in codeigniter doesn' t work as expected)
  • 在计算机拍照在哪里进入
  • 使用cin.get()从c ++中的输入流中丢弃不需要的字符(Using cin.get() to discard unwanted characters from the input stream in c++)
  • No for循环将在for循环中运行。(No for loop will run inside for loop. Testing for primes)
  • 单页应用程序:页面重新加载(Single Page Application: page reload)
  • 在循环中选择具有相似模式的列名称(Selecting Column Name With Similar Pattern in a Loop)
  • System.StackOverflow错误(System.StackOverflow error)
  • KnockoutJS未在嵌套模板上应用beforeRemove和afterAdd(KnockoutJS not applying beforeRemove and afterAdd on nested templates)
  • 散列包括方法和/或嵌套属性(Hash include methods and/or nested attributes)
  • android - 如何避免使用Samsung RFS文件系统延迟/冻结?(android - how to avoid lag/freezes with Samsung RFS filesystem?)
  • TensorFlow:基于索引列表创建新张量(TensorFlow: Create a new tensor based on list of indices)
  • 企业安全培训的各项内容
  • 错误:RPC失败;(error: RPC failed; curl transfer closed with outstanding read data remaining)
  • C#类名中允许哪些字符?(What characters are allowed in C# class name?)
  • NumPy:将int64值存储在np.array中并使用dtype float64并将其转换回整数是否安全?(NumPy: Is it safe to store an int64 value in an np.array with dtype float64 and later convert it back to integer?)
  • 注销后如何隐藏导航portlet?(How to hide navigation portlet after logout?)
  • 将多个行和可变行移动到列(moving multiple and variable rows to columns)
  • 提交表单时忽略基础href,而不使用Javascript(ignore base href when submitting form, without using Javascript)
  • 对setOnInfoWindowClickListener的意图(Intent on setOnInfoWindowClickListener)
  • Angular $资源不会改变方法(Angular $resource doesn't change method)
  • 在Angular 5中不是一个函数(is not a function in Angular 5)
  • 如何配置Composite C1以将.m和桌面作为同一站点提供服务(How to configure Composite C1 to serve .m and desktop as the same site)
  • 不适用:悬停在悬停时:在元素之前[复制](Don't apply :hover when hovering on :before element [duplicate])
  • 常见的python rpc和cli接口(Common python rpc and cli interface)
  • Mysql DB单个字段匹配多个其他字段(Mysql DB single field matching to multiple other fields)
  • 产品页面上的Magento Up出售对齐问题(Magento Up sell alignment issue on the products page)